opencode-skills-collection 3.0.32 → 3.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/bundled-skills/.antigravity-install-manifest.json +10 -1
  2. package/bundled-skills/bilig-workpaper/SKILL.md +12 -3
  3. package/bundled-skills/bumblebee/SKILL.md +6 -2
  4. package/bundled-skills/bun-development/SKILL.md +5 -3
  5. package/bundled-skills/cloud-penetration-testing/SKILL.md +5 -3
  6. package/bundled-skills/container-security-hardening/SKILL.md +20 -7
  7. package/bundled-skills/container-security-hardening/references/kubernetes-pod-security.md +8 -2
  8. package/bundled-skills/doc2math/SKILL.md +102 -0
  9. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  10. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  11. package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
  12. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  13. package/bundled-skills/docs/users/bundles.md +1 -1
  14. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  15. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  16. package/bundled-skills/docs/users/getting-started.md +6 -2
  17. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  18. package/bundled-skills/docs/users/usage.md +4 -4
  19. package/bundled-skills/docs/users/visual-guide.md +4 -4
  20. package/bundled-skills/environment-setup-guide/SKILL.md +10 -6
  21. package/bundled-skills/evolution/SKILL.md +5 -3
  22. package/bundled-skills/github-actions-advanced/SKILL.md +34 -9
  23. package/bundled-skills/gitops-workflow/SKILL.md +5 -3
  24. package/bundled-skills/ii-commons/SKILL.md +15 -1
  25. package/bundled-skills/lemmaly/SKILL.md +15 -6
  26. package/bundled-skills/linkerd-patterns/SKILL.md +5 -3
  27. package/bundled-skills/longbridge/SKILL.md +5 -1
  28. package/bundled-skills/mercury-mcp/SKILL.md +9 -1
  29. package/bundled-skills/moatmri/SKILL.md +84 -0
  30. package/bundled-skills/nextjs-seo-indexing/SKILL.md +263 -0
  31. package/bundled-skills/openclaw-github-repo-commander/scripts/repo-audit.sh +42 -0
  32. package/bundled-skills/photopea-embedded-editor/SKILL.md +7 -3
  33. package/bundled-skills/schema-markup-generator/SKILL.md +319 -0
  34. package/bundled-skills/sendblue/sendblue-api/SKILL.md +6 -1
  35. package/bundled-skills/sendblue/sendblue-cli/SKILL.md +6 -1
  36. package/bundled-skills/sendblue/sendblue-notify/SKILL.md +6 -1
  37. package/bundled-skills/sendblue/textme/SKILL.md +4 -0
  38. package/bundled-skills/social-metadata-hardening/SKILL.md +230 -0
  39. package/bundled-skills/socialclaw/SKILL.md +6 -1
  40. package/bundled-skills/uv-package-manager/resources/implementation-playbook.md +5 -3
  41. package/bundled-skills/varlock/SKILL.md +10 -6
  42. package/bundled-skills/vibe-code-cleanup/SKILL.md +231 -0
  43. package/bundled-skills/vibecode-production-qa-validator/SKILL.md +237 -0
  44. package/bundled-skills/wordpress-centric-high-seo-optimized-blogwriting-skill/SKILL.md +229 -162
  45. package/bundled-skills/yield-intelligence/SKILL.md +121 -0
  46. package/bundled-skills/youtube-full/SKILL.md +144 -0
  47. package/package.json +1 -1
  48. package/skills_index.json +199 -1
@@ -0,0 +1,144 @@
1
+ ---
2
+ name: youtube-full
3
+ description: "Fetch YouTube transcripts, search videos, browse channels, and extract playlists via TranscriptAPI — no yt-dlp, no Google API key, works from any cloud server."
4
+ category: api-integration
5
+ risk: safe
6
+ source: community
7
+ source_repo: ZeroPointRepo/youtube-skills
8
+ source_type: community
9
+ date_added: "2026-05-29"
10
+ author: ZeroPointRepo
11
+ tags: [youtube, transcripts, video-search, channels, playlists, api, transcriptapi]
12
+ tools: [claude, cursor, gemini, codex, antigravity]
13
+ license: MIT
14
+ license_source: "https://github.com/ZeroPointRepo/youtube-skills/blob/main/LICENSE"
15
+ upstream: "https://github.com/ZeroPointRepo/youtube-skills"
16
+ plugin:
17
+ setup:
18
+ type: automatic
19
+ summary: "TranscriptAPI OAuth provisions the API key on first skill invocation. No manual credential setup. 100 free credits included."
20
+ docs: "https://transcriptapi.com/docs"
21
+ ---
22
+
23
+ # youtube-full — YouTube transcript, search, channels & playlists via TranscriptAPI
24
+
25
+ YouTube transcripts, video search, channel browsing, in-channel search, playlist extraction, and new-upload monitoring — all via [TranscriptAPI](https://transcriptapi.com). Processes 500K+ transcripts daily, fast. No yt-dlp, no headless browsers, no Google API key.
26
+
27
+ This is the API-backed alternative to `ingest-youtube`. Where `ingest-youtube` uses yt-dlp (which stops working on cloud server IPs), `youtube-full` calls TranscriptAPI's API and works from any runtime — local machine, cloud server, serverless function, or CI environment. 686 installs via the `skills` CLI (skills.sh/zeropointrepo/youtube-skills).
28
+
29
+ ## When to Use This Skill
30
+
31
+ - User asks to get, fetch, or retrieve a YouTube video transcript
32
+ - User asks to search YouTube for videos on a topic
33
+ - User wants to monitor a channel for new uploads
34
+ - User needs channel metadata, video lists, or playlist contents
35
+ - Agent is deployed on a cloud server where yt-dlp calls fail (YouTube blocks cloud IPs)
36
+ - Building a research corpus from YouTube conference talks, tutorials, or interviews
37
+ - Competitive intelligence: monitoring competitor channels for new content
38
+
39
+ Do NOT use for:
40
+ - Downloading actual video or audio files (use yt-dlp directly with `-f best`)
41
+ - YouTube comments, likes, or engagement data (not in API)
42
+ - Private or age-restricted videos (not accessible without user authentication)
43
+ - Live stream transcripts (not stable until stream ends)
44
+
45
+ ## How It Works
46
+
47
+ ### Step 1: Install the skill
48
+
49
+ ```bash
50
+ npx skills add ZeroPointRepo/youtube-skills --skill youtube-full
51
+ ```
52
+
53
+ 100 free credits included. API key is provisioned automatically via TranscriptAPI OAuth on first invocation — no manual setup.
54
+
55
+ ### Step 2: Use it by asking Claude
56
+
57
+ ```text
58
+ Get the transcript of https://www.youtube.com/watch?v=VIDEO_ID
59
+ Search YouTube for "LLM reasoning 2026" and summarize the top 3 results
60
+ What are the latest uploads on @3Blue1Brown?
61
+ List all videos in this playlist: https://www.youtube.com/playlist?list=PLAYLIST_ID
62
+ ```
63
+
64
+ ### Step 3: Available operations
65
+
66
+ | Operation | Skill invocation | Credits |
67
+ |---|---|---|
68
+ | Get transcript | `get_transcript(video_id)` | 1 |
69
+ | Search YouTube | `search_youtube(query)` | 1 per page |
70
+ | Channel video list | `get_channel_videos(handle)` | 1 per page |
71
+ | In-channel search | `search_in_channel(handle, query)` | 1 per page |
72
+ | Playlist extraction | `get_playlist_videos(playlist_id)` | 1 per page |
73
+ | Track new uploads | `channel_latest(handle)` | **Free** |
74
+ | Resolve channel handle | `channel_resolve(handle)` | **Free** |
75
+
76
+ Failed or rate-limited calls cost zero credits.
77
+
78
+ ## Examples
79
+
80
+ ### Example 1: Research corpus from conference talks
81
+
82
+ ```text
83
+ Search YouTube for "NeurIPS 2025 keynote" and get transcripts for the top 5 results.
84
+ Summarize the main themes across all talks.
85
+ ```
86
+
87
+ The agent calls `search_youtube`, selects the top 5 results, calls `get_transcript` for each, and synthesizes.
88
+
89
+ ### Example 2: Competitive channel monitoring
90
+
91
+ ```text
92
+ Check @AnthropicAI and @OpenAI channels for any new videos in the last week.
93
+ For each new video, get the transcript and extract any product announcements.
94
+ ```
95
+
96
+ The agent calls `channel_latest` (free) for each channel, fetches transcripts of new uploads, and extracts signal.
97
+
98
+ ### Example 3: Direct transcript with timestamps
99
+
100
+ ```text
101
+ Get the full transcript with timestamps for https://www.youtube.com/watch?v=dQw4w9WgXcQ
102
+ ```
103
+
104
+ The agent calls `get_transcript(video_id, timestamps=true)` and returns the full text.
105
+
106
+ ## Best Practices
107
+
108
+ - Use `channel_latest` (free) before `get_transcript` to check if a video is new
109
+ - Cache transcripts in your workflow — each `get_transcript` call costs 1 credit
110
+ - Use `search_in_channel` when you already know the channel to avoid broad search noise
111
+ - Prefer `get_playlist_videos` for course or lecture series — cheaper than searching by query
112
+ - Don't batch-transcribe entire channels unless the user explicitly requested it
113
+ - Don't use `search_youtube` when you already have the video URL — jump straight to `get_transcript`
114
+
115
+ ## Limitations
116
+
117
+ - This skill does not replace environment-specific validation, testing, or expert review.
118
+ - Stop and ask for clarification if required inputs, permissions, or safety boundaries are missing.
119
+ - Transcripts are available only when YouTube has captions (manual or auto-generated). Some videos have no captions.
120
+ - API key is required for paid usage beyond the free 100-credit tier. Get one at transcriptapi.com.
121
+ - Rate limits apply: 200 RPM on Monthly plan, 300 RPM on Annual. Contact support for higher limits.
122
+
123
+ ## Security & Safety Notes
124
+
125
+ - This skill makes HTTPS API calls to `transcriptapi.com`. No local data is written.
126
+ - The API key is stored in the agent's credential store, not in this SKILL.md.
127
+ - No shell commands, no binary execution, no local system mutation. Risk level: `safe`.
128
+
129
+ ## Common Pitfalls
130
+
131
+ - **Problem:** `yt-dlp` fails when the agent runs on a cloud server.
132
+ **Solution:** This is exactly the use case for `youtube-full`. The API routes through TranscriptAPI's infrastructure and works from any cloud runtime.
133
+
134
+ - **Problem:** Credit balance runs out mid-workflow.
135
+ **Solution:** Use `channel_latest` (free) to check before fetching; use targeted search to fetch only the videos you need.
136
+
137
+ - **Problem:** Transcript is not available for a video.
138
+ **Solution:** The API returns a structured error (zero credits charged). Ask the user to provide an alternative source.
139
+
140
+ ## Related Skills
141
+
142
+ - `@ingest-youtube` — yt-dlp-based local ingestion to a markdown vault; works locally but not on cloud servers
143
+ - `@deep-research` — General-purpose research skill that can incorporate youtube-full as a data source
144
+ - `@ai-research-corpus` — Building searchable knowledge bases; pairs well with youtube-full for video content
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-skills-collection",
3
- "version": "3.0.32",
3
+ "version": "3.0.34",
4
4
  "description": "OpenCode CLI plugin that automatically downloads and keeps skills up to date.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/skills_index.json CHANGED
@@ -10877,6 +10877,28 @@
10877
10877
  "reasons": []
10878
10878
  }
10879
10879
  },
10880
+ {
10881
+ "id": "doc2math",
10882
+ "path": "skills/doc2math",
10883
+ "category": "uncategorized",
10884
+ "name": "doc2math",
10885
+ "description": "Convert narrative technical documents into grounded Mathematical Problem Specifications with variables, constraints, objectives, and uncertainty.",
10886
+ "risk": "safe",
10887
+ "source": "community",
10888
+ "date_added": "2026-05-31",
10889
+ "plugin": {
10890
+ "targets": {
10891
+ "codex": "supported",
10892
+ "claude": "supported"
10893
+ },
10894
+ "setup": {
10895
+ "type": "none",
10896
+ "summary": "",
10897
+ "docs": null
10898
+ },
10899
+ "reasons": []
10900
+ }
10901
+ },
10880
10902
  {
10881
10903
  "id": "docker-expert",
10882
10904
  "path": "skills/docker-expert",
@@ -19497,6 +19519,28 @@
19497
19519
  "reasons": []
19498
19520
  }
19499
19521
  },
19522
+ {
19523
+ "id": "moatmri",
19524
+ "path": "skills/moatmri",
19525
+ "category": "business",
19526
+ "name": "moatmri",
19527
+ "description": "Analyze AI disruption pressure across a business, map competitive exposure, and produce a 90-day defensive action plan.",
19528
+ "risk": "safe",
19529
+ "source": "community",
19530
+ "date_added": "2026-05-31",
19531
+ "plugin": {
19532
+ "targets": {
19533
+ "codex": "supported",
19534
+ "claude": "supported"
19535
+ },
19536
+ "setup": {
19537
+ "type": "none",
19538
+ "summary": "",
19539
+ "docs": null
19540
+ },
19541
+ "reasons": []
19542
+ }
19543
+ },
19500
19544
  {
19501
19545
  "id": "mobile-design",
19502
19546
  "path": "skills/mobile-design",
@@ -20515,6 +20559,28 @@
20515
20559
  "reasons": []
20516
20560
  }
20517
20561
  },
20562
+ {
20563
+ "id": "nextjs-seo-indexing",
20564
+ "path": "skills/nextjs-seo-indexing",
20565
+ "category": "seo",
20566
+ "name": "nextjs-seo-indexing",
20567
+ "description": "Fix SEO indexing issues, crawl budget problems, and Search Console coverage errors for Next.js apps. Covers canonical tags, noindex audits, sitemap health, static rendering, and internal linking.",
20568
+ "risk": "safe",
20569
+ "source": "self",
20570
+ "date_added": "2026-05-31",
20571
+ "plugin": {
20572
+ "targets": {
20573
+ "codex": "supported",
20574
+ "claude": "supported"
20575
+ },
20576
+ "setup": {
20577
+ "type": "none",
20578
+ "summary": "",
20579
+ "docs": null
20580
+ },
20581
+ "reasons": []
20582
+ }
20583
+ },
20518
20584
  {
20519
20585
  "id": "nextjs-supabase-auth",
20520
20586
  "path": "skills/nextjs-supabase-auth",
@@ -25140,6 +25206,28 @@
25140
25206
  "reasons": []
25141
25207
  }
25142
25208
  },
25209
+ {
25210
+ "id": "schema-markup-generator",
25211
+ "path": "skills/schema-markup-generator",
25212
+ "category": "seo",
25213
+ "name": "schema-markup-generator",
25214
+ "description": "Generate and implement JSON-LD structured data for web apps, tool pages, blogs, FAQs, and SaaS sites. Supports WebSite, SoftwareApplication, BlogPosting, FAQPage, HowTo, BreadcrumbList, and Organization schemas.",
25215
+ "risk": "safe",
25216
+ "source": "self",
25217
+ "date_added": "2026-05-31",
25218
+ "plugin": {
25219
+ "targets": {
25220
+ "codex": "supported",
25221
+ "claude": "supported"
25222
+ },
25223
+ "setup": {
25224
+ "type": "none",
25225
+ "summary": "",
25226
+ "docs": null
25227
+ },
25228
+ "reasons": []
25229
+ }
25230
+ },
25143
25231
  {
25144
25232
  "id": "scientific-writing",
25145
25233
  "path": "skills/scientific-writing",
@@ -27468,6 +27556,28 @@
27468
27556
  "reasons": []
27469
27557
  }
27470
27558
  },
27559
+ {
27560
+ "id": "social-metadata-hardening",
27561
+ "path": "skills/social-metadata-hardening",
27562
+ "category": "seo",
27563
+ "name": "social-metadata-hardening",
27564
+ "description": "Fix social sharing previews so URLs render as rich cards on Facebook, LinkedIn, X/Twitter, WhatsApp, Telegram, Slack, and Discord. Covers OG tags, Twitter cards, absolute image URLs, and metadata debugging.",
27565
+ "risk": "safe",
27566
+ "source": "self",
27567
+ "date_added": "2026-05-31",
27568
+ "plugin": {
27569
+ "targets": {
27570
+ "codex": "supported",
27571
+ "claude": "supported"
27572
+ },
27573
+ "setup": {
27574
+ "type": "none",
27575
+ "summary": "",
27576
+ "docs": null
27577
+ },
27578
+ "reasons": []
27579
+ }
27580
+ },
27471
27581
  {
27472
27582
  "id": "social-orchestrator",
27473
27583
  "path": "skills/social-orchestrator",
@@ -31110,6 +31220,50 @@
31110
31220
  "reasons": []
31111
31221
  }
31112
31222
  },
31223
+ {
31224
+ "id": "vibe-code-cleanup",
31225
+ "path": "skills/vibe-code-cleanup",
31226
+ "category": "fullstack",
31227
+ "name": "vibe-code-cleanup",
31228
+ "description": "Safe production cleanup and hardening for vibe-coded fullstack apps (Next.js, React, Node.js, etc.). Removes dead imports, unused files, broken references, and standardizes helpers without breaking routes or APIs.",
31229
+ "risk": "safe",
31230
+ "source": "self",
31231
+ "date_added": "2026-05-31",
31232
+ "plugin": {
31233
+ "targets": {
31234
+ "codex": "supported",
31235
+ "claude": "supported"
31236
+ },
31237
+ "setup": {
31238
+ "type": "none",
31239
+ "summary": "",
31240
+ "docs": null
31241
+ },
31242
+ "reasons": []
31243
+ }
31244
+ },
31245
+ {
31246
+ "id": "vibecode-production-qa-validator",
31247
+ "path": "skills/vibecode-production-qa-validator",
31248
+ "category": "devops",
31249
+ "name": "vibecode-production-qa-validator",
31250
+ "description": "End-to-end production QA, build verification, and launch-readiness checklist for fullstack Next.js apps before going live or shipping a major update. Covers TypeScript, linting, tests, build, SEO tags, route regression, and sitemap validation.",
31251
+ "risk": "safe",
31252
+ "source": "self",
31253
+ "date_added": "2026-05-31",
31254
+ "plugin": {
31255
+ "targets": {
31256
+ "codex": "supported",
31257
+ "claude": "supported"
31258
+ },
31259
+ "setup": {
31260
+ "type": "none",
31261
+ "summary": "",
31262
+ "docs": null
31263
+ },
31264
+ "reasons": []
31265
+ }
31266
+ },
31113
31267
  {
31114
31268
  "id": "vibers-code-review",
31115
31269
  "path": "skills/vibers-code-review",
@@ -31995,7 +32149,7 @@
31995
32149
  "path": "skills/wordpress-centric-high-seo-optimized-blogwriting-skill",
31996
32150
  "category": "content",
31997
32151
  "name": "wordpress-centric-high-seo-optimized-blogwriting-skill",
31998
- "description": "Create long-form, high-quality, SEO-optimized blog posts ready for WordPress with truth boxes and FAQ schema.",
32152
+ "description": "Generate clean, human-sounding, SEO-optimized WordPress blog posts with optional Yoast metadata, JSON-LD schema markup, and image SEO planning. Supports modular batch output.",
31999
32153
  "risk": "safe",
32000
32154
  "source": "self",
32001
32155
  "date_added": "2026-04-12",
@@ -32520,6 +32674,28 @@
32520
32674
  "reasons": []
32521
32675
  }
32522
32676
  },
32677
+ {
32678
+ "id": "yield-intelligence",
32679
+ "path": "skills/yield-intelligence",
32680
+ "category": "uncategorized",
32681
+ "name": "yield-intelligence",
32682
+ "description": "Passive income portfolio analysis \u2014 activate when user asks about dividend yields, Treasury rates, REIT income, monthly passive income goals, or portfolio yield optimization. Scans 4 asset classes, ranks by risk-adjusted return, and builds allocations targeting a specific monthly income.",
32683
+ "risk": "safe",
32684
+ "source": "community",
32685
+ "date_added": "2026-05-31",
32686
+ "plugin": {
32687
+ "targets": {
32688
+ "codex": "supported",
32689
+ "claude": "supported"
32690
+ },
32691
+ "setup": {
32692
+ "type": "none",
32693
+ "summary": "",
32694
+ "docs": null
32695
+ },
32696
+ "reasons": []
32697
+ }
32698
+ },
32523
32699
  {
32524
32700
  "id": "youtube-automation",
32525
32701
  "path": "skills/youtube-automation",
@@ -32542,6 +32718,28 @@
32542
32718
  "reasons": []
32543
32719
  }
32544
32720
  },
32721
+ {
32722
+ "id": "youtube-full",
32723
+ "path": "skills/youtube-full",
32724
+ "category": "api-integration",
32725
+ "name": "youtube-full",
32726
+ "description": "Fetch YouTube transcripts, search videos, browse channels, and extract playlists via TranscriptAPI \u2014 no yt-dlp, no Google API key, works from any cloud server.",
32727
+ "risk": "safe",
32728
+ "source": "community",
32729
+ "date_added": "2026-05-29",
32730
+ "plugin": {
32731
+ "targets": {
32732
+ "codex": "supported",
32733
+ "claude": "supported"
32734
+ },
32735
+ "setup": {
32736
+ "type": "none",
32737
+ "summary": "TranscriptAPI OAuth provisions the API key on first skill invocation. No manual credential setup. 100 free credits included.",
32738
+ "docs": "https://transcriptapi.com/docs"
32739
+ },
32740
+ "reasons": []
32741
+ }
32742
+ },
32545
32743
  {
32546
32744
  "id": "youtube-summarizer",
32547
32745
  "path": "skills/youtube-summarizer",