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.
- package/bundled-skills/.antigravity-install-manifest.json +14 -1
- package/bundled-skills/bilig-workpaper/SKILL.md +12 -3
- package/bundled-skills/bumblebee/SKILL.md +6 -2
- package/bundled-skills/bun-development/SKILL.md +5 -3
- package/bundled-skills/cloud-penetration-testing/SKILL.md +5 -3
- package/bundled-skills/container-security-hardening/SKILL.md +1001 -0
- package/bundled-skills/container-security-hardening/references/base-image-comparison.md +245 -0
- package/bundled-skills/container-security-hardening/references/kubernetes-pod-security.md +567 -0
- package/bundled-skills/container-security-hardening/references/seccomp-profile-template.json +337 -0
- package/bundled-skills/doc2math/SKILL.md +102 -0
- package/bundled-skills/docs/integrations/jetski-cortex.md +3 -3
- package/bundled-skills/docs/integrations/jetski-gemini-loader/README.md +1 -1
- package/bundled-skills/docs/maintainers/repo-growth-seo.md +3 -3
- package/bundled-skills/docs/maintainers/skills-update-guide.md +1 -1
- package/bundled-skills/docs/users/bundles.md +1 -1
- package/bundled-skills/docs/users/claude-code-skills.md +1 -1
- package/bundled-skills/docs/users/gemini-cli-skills.md +1 -1
- package/bundled-skills/docs/users/getting-started.md +6 -2
- package/bundled-skills/docs/users/kiro-integration.md +1 -1
- package/bundled-skills/docs/users/usage.md +4 -4
- package/bundled-skills/docs/users/visual-guide.md +4 -4
- package/bundled-skills/environment-setup-guide/SKILL.md +10 -6
- package/bundled-skills/evolution/SKILL.md +5 -3
- package/bundled-skills/github-actions-advanced/SKILL.md +1100 -0
- package/bundled-skills/gitops-workflow/SKILL.md +5 -3
- package/bundled-skills/ii-commons/SKILL.md +15 -1
- package/bundled-skills/lemmaly/SKILL.md +15 -6
- package/bundled-skills/linkerd-patterns/SKILL.md +5 -3
- package/bundled-skills/longbridge/SKILL.md +95 -0
- package/bundled-skills/mercury-mcp/SKILL.md +9 -1
- package/bundled-skills/moatmri/SKILL.md +84 -0
- package/bundled-skills/nextjs-seo-indexing/SKILL.md +263 -0
- package/bundled-skills/openclaw-github-repo-commander/scripts/repo-audit.sh +42 -0
- package/bundled-skills/photopea-embedded-editor/SKILL.md +7 -3
- package/bundled-skills/runaway-guard/SKILL.md +331 -0
- package/bundled-skills/schema-markup-generator/SKILL.md +319 -0
- package/bundled-skills/sendblue/sendblue-api/SKILL.md +6 -1
- package/bundled-skills/sendblue/sendblue-cli/SKILL.md +6 -1
- package/bundled-skills/sendblue/sendblue-notify/SKILL.md +6 -1
- package/bundled-skills/sendblue/textme/SKILL.md +4 -0
- package/bundled-skills/social-metadata-hardening/SKILL.md +230 -0
- package/bundled-skills/socialclaw/SKILL.md +6 -1
- package/bundled-skills/uv-package-manager/resources/implementation-playbook.md +5 -3
- package/bundled-skills/varlock/SKILL.md +10 -6
- package/bundled-skills/vibe-code-cleanup/SKILL.md +231 -0
- package/bundled-skills/vibecode-production-qa-validator/SKILL.md +237 -0
- package/bundled-skills/wordpress-centric-high-seo-optimized-blogwriting-skill/SKILL.md +229 -162
- package/bundled-skills/yield-intelligence/SKILL.md +121 -0
- package/bundled-skills/youtube-full/SKILL.md +144 -0
- package/package.json +1 -1
- package/skills_index.json +330 -28
|
@@ -83,9 +83,11 @@ Provide verification steps to ensure everything works:
|
|
|
83
83
|
**macOS (using Homebrew):**
|
|
84
84
|
\`\`\`bash
|
|
85
85
|
# Install Homebrew if not installed
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
tmpdir="$(mktemp -d)"
|
|
87
|
+
trap 'rm -rf "$tmpdir"' EXIT
|
|
88
|
+
curl -fsSLo "$tmpdir/homebrew-install.sh" https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh
|
|
89
|
+
sed -n '1,160p' "$tmpdir/homebrew-install.sh"
|
|
90
|
+
/bin/bash "$tmpdir/homebrew-install.sh"
|
|
89
91
|
|
|
90
92
|
# Install Node.js
|
|
91
93
|
brew install node
|
|
@@ -97,9 +99,11 @@ brew install node
|
|
|
97
99
|
sudo apt update
|
|
98
100
|
|
|
99
101
|
# Install Node.js and npm
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
102
|
+
tmpdir="$(mktemp -d)"
|
|
103
|
+
trap 'rm -rf "$tmpdir"' EXIT
|
|
104
|
+
curl -fsSLo "$tmpdir/nodesource-setup.sh" https://deb.nodesource.com/setup_20.x
|
|
105
|
+
sed -n '1,160p' "$tmpdir/nodesource-setup.sh"
|
|
106
|
+
sudo -E bash "$tmpdir/nodesource-setup.sh"
|
|
103
107
|
sudo apt install -y nodejs
|
|
104
108
|
\`\`\`
|
|
105
109
|
|
|
@@ -34,9 +34,11 @@ For reliable automatic triggering, use Claude Code hooks. Install with `--with-h
|
|
|
34
34
|
|
|
35
35
|
```bash
|
|
36
36
|
# Install makepad-skills with hooks enabled
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
37
|
+
tmpdir="$(mktemp -d)"
|
|
38
|
+
trap 'rm -rf "$tmpdir"' EXIT
|
|
39
|
+
curl -fsSLo "$tmpdir/makepad-skills-install.sh" https://raw.githubusercontent.com/ZhangHanDong/makepad-skills/main/install.sh
|
|
40
|
+
sed -n '1,160p' "$tmpdir/makepad-skills-install.sh"
|
|
41
|
+
bash "$tmpdir/makepad-skills-install.sh" --with-hooks
|
|
40
42
|
```
|
|
41
43
|
|
|
42
44
|
This will install hooks to `.claude/hooks/` and configure `.claude/settings.json`:
|