opencode-skills-collection 3.0.31 → 3.0.33

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 (51) hide show
  1. package/bundled-skills/.antigravity-install-manifest.json +14 -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 +1001 -0
  7. package/bundled-skills/container-security-hardening/references/base-image-comparison.md +245 -0
  8. package/bundled-skills/container-security-hardening/references/kubernetes-pod-security.md +567 -0
  9. package/bundled-skills/container-security-hardening/references/seccomp-profile-template.json +337 -0
  10. package/bundled-skills/doc2math/SKILL.md +102 -0
  11. package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
  12. package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
  13. package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
  14. package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
  15. package/bundled-skills/docs/users/bundles.md +1 -1
  16. package/bundled-skills/docs/users/claude-code-skills.md +1 -1
  17. package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
  18. package/bundled-skills/docs/users/getting-started.md +6 -2
  19. package/bundled-skills/docs/users/kiro-integration.md +1 -1
  20. package/bundled-skills/docs/users/usage.md +4 -4
  21. package/bundled-skills/docs/users/visual-guide.md +4 -4
  22. package/bundled-skills/environment-setup-guide/SKILL.md +10 -6
  23. package/bundled-skills/evolution/SKILL.md +5 -3
  24. package/bundled-skills/github-actions-advanced/SKILL.md +1100 -0
  25. package/bundled-skills/gitops-workflow/SKILL.md +5 -3
  26. package/bundled-skills/ii-commons/SKILL.md +15 -1
  27. package/bundled-skills/lemmaly/SKILL.md +15 -6
  28. package/bundled-skills/linkerd-patterns/SKILL.md +5 -3
  29. package/bundled-skills/longbridge/SKILL.md +95 -0
  30. package/bundled-skills/mercury-mcp/SKILL.md +9 -1
  31. package/bundled-skills/moatmri/SKILL.md +84 -0
  32. package/bundled-skills/nextjs-seo-indexing/SKILL.md +263 -0
  33. package/bundled-skills/openclaw-github-repo-commander/scripts/repo-audit.sh +42 -0
  34. package/bundled-skills/photopea-embedded-editor/SKILL.md +7 -3
  35. package/bundled-skills/runaway-guard/SKILL.md +331 -0
  36. package/bundled-skills/schema-markup-generator/SKILL.md +319 -0
  37. package/bundled-skills/sendblue/sendblue-api/SKILL.md +6 -1
  38. package/bundled-skills/sendblue/sendblue-cli/SKILL.md +6 -1
  39. package/bundled-skills/sendblue/sendblue-notify/SKILL.md +6 -1
  40. package/bundled-skills/sendblue/textme/SKILL.md +4 -0
  41. package/bundled-skills/social-metadata-hardening/SKILL.md +230 -0
  42. package/bundled-skills/socialclaw/SKILL.md +6 -1
  43. package/bundled-skills/uv-package-manager/resources/implementation-playbook.md +5 -3
  44. package/bundled-skills/varlock/SKILL.md +10 -6
  45. package/bundled-skills/vibe-code-cleanup/SKILL.md +231 -0
  46. package/bundled-skills/vibecode-production-qa-validator/SKILL.md +237 -0
  47. package/bundled-skills/wordpress-centric-high-seo-optimized-blogwriting-skill/SKILL.md +229 -162
  48. package/bundled-skills/yield-intelligence/SKILL.md +121 -0
  49. package/bundled-skills/youtube-full/SKILL.md +144 -0
  50. package/package.json +1 -1
  51. package/skills_index.json +330 -28
@@ -0,0 +1,237 @@
1
+ ---
2
+ name: vibecode-production-qa-validator
3
+ 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."
4
+ category: devops
5
+ risk: safe
6
+ source: self
7
+ source_type: self
8
+ date_added: "2026-05-31"
9
+ author: Whoisabhishekadhikari
10
+ tags: [qa, testing, nextjs, production, build-validation, deployment, seo]
11
+ tools: [claude, cursor, gemini, claude-code]
12
+ version: 1.0.0
13
+ ---
14
+
15
+ # Production QA Validator Skill
16
+
17
+ The end-to-end launch checklist for fullstack Next.js apps. Run this before every production deployment or after any major change.
18
+
19
+ ---
20
+
21
+ ## When to Use
22
+
23
+ - Use before deploying a vibe-coded or fast-built app to production.
24
+ - Use when validating build output, SEO tags, sitemap routes, API routes, git diff cleanliness, and post-deploy smoke checks.
25
+ - Use when you need a concrete definition of done for release readiness across code, runtime behavior, and public URLs.
26
+
27
+ ---
28
+
29
+ ## The Full Validation Command Sequence
30
+
31
+ Run in order — stop and fix on any failure before continuing:
32
+
33
+ ```bash
34
+ # 1. TypeScript — catches type errors and broken imports
35
+ npx tsc --noEmit
36
+
37
+ # 2. Custom validation scripts (if present)
38
+ npm run validate 2>/dev/null || echo "No validate script"
39
+
40
+ # 3. Canonical/SEO linting (if present)
41
+ npm run lint:canon 2>/dev/null || echo "No canon lint"
42
+ npm run lint:anchors 2>/dev/null || echo "No anchor lint"
43
+ npm run lint:links 2>/dev/null || echo "No link lint"
44
+
45
+ # 4. ESLint
46
+ npx eslint . --ext .js,.jsx,.ts,.tsx --max-warnings 0
47
+
48
+ # 5. Tests
49
+ npm test -- --runInBand --passWithNoTests
50
+
51
+ # 6. Production build — the final arbiter
52
+ npm run build
53
+ ```
54
+
55
+ All 6 must pass before committing.
56
+
57
+ ---
58
+
59
+ ## Reading the Build Output
60
+
61
+ ```bash
62
+ npm run build 2>&1 | tee build.log
63
+
64
+ # Check for errors
65
+ grep -i "error\|failed\|cannot" build.log | grep -v "no errors"
66
+
67
+ # Check static page count
68
+ grep "Static pages\|○\|●" build.log | tail -5
69
+ ```
70
+
71
+ ### Route symbols explained
72
+ | Symbol | Meaning | Expected? |
73
+ |--------|---------|-----------|
74
+ | `○` | Static (rendered at build time) | ✓ Good for most pages |
75
+ | `●` | SSG (generated from `generateStaticParams`) | ✓ Good for dynamic pages |
76
+ | `λ` | Serverless (dynamic, rendered on request) | ✓ APIs and truly dynamic pages only |
77
+ | `⊕` | Partial prerender | ✓ Fine |
78
+
79
+ If an important SEO page shows `λ` and should be static, add `generateStaticParams` or use `export const dynamic = 'force-static'`.
80
+
81
+ ---
82
+
83
+ ## SEO Tags in Raw HTML Verification
84
+
85
+ Crawlers don't run JavaScript. Metadata must be in the raw HTML response.
86
+
87
+ ```bash
88
+ # Check a page's metadata
89
+ curl -s https://www.yourdomain.com/blog/my-post | grep -i \
90
+ "og:title\|og:description\|og:image\|twitter:card\|canonical\|description"
91
+
92
+ # Expected output should include all of these:
93
+ # <meta property="og:title" content="..." />
94
+ # <meta property="og:description" content="..." />
95
+ # <meta property="og:image" content="https://..." />
96
+ # <meta name="twitter:card" content="summary_large_image" />
97
+ # <link rel="canonical" href="https://..." />
98
+ # <meta name="description" content="..." />
99
+ ```
100
+
101
+ If tags are missing from raw HTML: they're added by client-side JavaScript. Fix: move to `export const metadata` or `generateMetadata`.
102
+
103
+ ---
104
+
105
+ ## Route Regression Testing
106
+
107
+ After any major change, verify all critical route types still return 200:
108
+
109
+ ```bash
110
+ BASE="https://www.yourdomain.com"
111
+
112
+ # Core pages
113
+ for path in "/" "/about" "/contact" "/privacy" "/terms" "/faq"; do
114
+ STATUS=$(curl -s -o /dev/null -w "%{http_code}" "$BASE$path")
115
+ echo "$STATUS $BASE$path"
116
+ done
117
+
118
+ # Sitemaps
119
+ for path in "/sitemap.xml" "/robots.txt"; do
120
+ STATUS=$(curl -s -o /dev/null -w "%{http_code}" "$BASE$path")
121
+ echo "$STATUS $BASE$path"
122
+ done
123
+
124
+ # Sample dynamic routes (test a few real slugs)
125
+ for path in "/tools/keyword-density-checker" "/blog/my-post-slug"; do
126
+ STATUS=$(curl -s -o /dev/null -w "%{http_code}" "$BASE$path")
127
+ echo "$STATUS $BASE$path"
128
+ done
129
+ ```
130
+
131
+ All should return `200`. Investigate anything returning `404`, `500`, or `301`/`302` when a direct URL was expected.
132
+
133
+ ---
134
+
135
+ ## Sitemap Validation
136
+
137
+ ```bash
138
+ # Fetch and validate sitemap XML
139
+ curl -s https://www.yourdomain.com/sitemap.xml | python3 -c "
140
+ import sys, xml.etree.ElementTree as ET
141
+ try:
142
+ ET.parse(sys.stdin)
143
+ print('✓ Valid XML')
144
+ except Exception as e:
145
+ print(f'✗ Invalid XML: {e}')
146
+ "
147
+
148
+ # Count URLs in sitemap
149
+ curl -s https://www.yourdomain.com/sitemap.xml | grep -c "<loc>"
150
+ ```
151
+
152
+ ---
153
+
154
+ ## API Route Testing
155
+
156
+ ```bash
157
+ # Test API endpoints return expected content-type and status
158
+ for path in "/api/health" "/api/tools"; do
159
+ RESULT=$(curl -s -o /dev/null -w "%{http_code} %{content_type}" "$BASE$path")
160
+ echo "$RESULT $path"
161
+ done
162
+ ```
163
+
164
+ ---
165
+
166
+ ## Pre-Commit Git Checklist
167
+
168
+ Before committing:
169
+
170
+ ```bash
171
+ # Review what's changed
172
+ git diff --stat HEAD
173
+
174
+ # Ensure no secrets or local-only files
175
+ git diff HEAD | grep -i "password\|secret\|api_key\|localhost:3000" | grep "^+"
176
+
177
+ # Confirm no build artifacts are staged
178
+ git status | grep -E "\.next|node_modules"
179
+ ```
180
+
181
+ Good commit message format:
182
+ ```
183
+ type(scope): brief description
184
+
185
+ fix(seo): add canonical tags to all blog pages
186
+ feat(tools): add keyword density checker page
187
+ refactor(metadata): consolidate OG/Twitter tags into shared helper
188
+ chore(cleanup): remove unused utils/oldHelper.js
189
+ ```
190
+
191
+ ---
192
+
193
+ ## Post-Deployment Smoke Test
194
+
195
+ Run 5–10 minutes after deployment:
196
+
197
+ ```bash
198
+ PROD="https://www.yourdomain.com"
199
+
200
+ # Homepage loads
201
+ curl -sI "$PROD" | grep -i "http\|status"
202
+
203
+ # Key page loads
204
+ curl -sI "$PROD/tools/keyword-density-checker" | grep "200\|301\|404"
205
+
206
+ # No JS errors (requires manual browser check)
207
+ # Open browser → Console → look for red errors
208
+
209
+ # OG image loads
210
+ curl -sI "$PROD/images/og/home.jpg" | grep -i "200\|content-type"
211
+ ```
212
+
213
+ ---
214
+
215
+ ## Definition of Done
216
+
217
+ A change is **production-ready** only when ALL of the following are true:
218
+
219
+ - [ ] `npx tsc --noEmit` passes
220
+ - [ ] `npm run validate` passes (or no script)
221
+ - [ ] `npm run lint:canon` passes (or no script)
222
+ - [ ] `npx eslint .` passes with 0 warnings
223
+ - [ ] `npm test` passes or no tests exist
224
+ - [ ] `npm run build` completes successfully
225
+ - [ ] Important pages show `○` or `●` in build output (not `λ`)
226
+ - [ ] SEO tags visible in `curl` output for key pages
227
+ - [ ] All sitemap routes return valid XML
228
+ - [ ] No new 404s on previously working routes
229
+ - [ ] No secrets in git diff
230
+ - [ ] Commit message is scoped and descriptive
231
+ - [ ] Social preview platforms show correct card after cache refresh
232
+
233
+ ## Limitations
234
+
235
+ - Passing this checklist reduces release risk but does not prove the absence of production bugs.
236
+ - Some checks depend on project-specific scripts, deployment topology, and external services that may not exist in every app.
237
+ - Manual exploratory testing is still required for critical user journeys, payments, auth, and data mutation flows.