Add 260+ Claude Code skills from skills.sh

Complete collection of AI agent skills including:
- Frontend Development (Vue, React, Next.js, Three.js)
- Backend Development (NestJS, FastAPI, Node.js)
- Mobile Development (React Native, Expo)
- Testing (E2E, frontend, webapp)
- DevOps (GitHub Actions, CI/CD)
- Marketing (SEO, copywriting, analytics)
- Security (binary analysis, vulnerability scanning)
- And many more...

Synchronized from: https://skills.sh/

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
admin
2026-01-23 18:02:28 +00:00
Unverified
commit 07242683bf
3300 changed files with 1223105 additions and 0 deletions

View File

@@ -0,0 +1,119 @@
---
name: wordpress-ai-title-generation
description: "Generate AI-optimized titles for WordPress posts using WordPress AI plugin capabilities"
---
# WordPress AI: Title Generation
## When to Use
Use this skill when you need to:
- Generate alternative titles for WordPress posts
- Optimize titles for SEO and engagement
- Create compelling headlines for content
- A/B test different title variations
## How It Works
The WordPress AI plugin can generate 3-5 title suggestions based on:
- Content analysis
- SEO best practices
- Engagement optimization
- Clarity and conciseness
## Usage
### Basic Usage
When asked to generate titles for WordPress content:
1. **Analyze the content** - Extract key topics, themes, and value propositions
2. **Generate candidates** - Create 3-5 title variations
3. **Optimize each** - Ensure they meet criteria:
- Length: 50-60 characters optimal
- Clarity: Immediately understandable
- Engagement: Compelling and clickable
- SEO: Contains relevant keywords
4. **Present options** - Show with reasoning for each
### Title Categories
Generate titles across these categories:
**Direct & Descriptive**
- Clear, straightforward
- "What [Product] Does and How It Helps"
**Benefit-Focused**
- Emphasizes value
- "How to [Achieve Goal] with [Solution]"
**Curiosity-Driven**
- Creates interest
- "The Secret to [Result] That [Experts] Use"
**List-Based**
- Numbered format
- "7 Ways [Method] Improves [Outcome]"
**Question-Based**
- Engages reader
- "Why [Phenomenon] Matters for [Audience]"
## Example Input/Output
**Input:**
```
Content: A technical article about GLM 4.7 model capabilities for one-shot web design
```
**Output:**
1. "GLM 4.7: Revolutionizing Web Design with One-Shot AI Generation" (SEO-focused)
2. "Create Production-Ready Websites in 60 Seconds with GLM 4.7" (Benefit-focused)
3. "The Future of Web Development: How AI Models Are Changing Everything" (Curiosity-driven)
4. "7 Industries Transformed by One-Shot AI Web Design" (List-based)
5. "Can AI Really Build Complete Websites in One Prompt?" (Question-based)
## Integration with WordPress
When implementing in WordPress:
```php
// Using WordPress AI plugin
$results = ai_generate_title( array(
'content' => $post_content,
'count' => 5,
'tone' => 'professional',
) );
foreach ( $results as $title ) {
echo '<option>' . esc_html( $title ) . '</option>';
}
```
## Best Practices
**Do:**
- Match tone to content style
- Include primary keywords naturally
- Keep under 60 characters for SEO
- Test multiple variations
- Consider audience expertise level
**Don't:**
- Use clickbait tactics
- Exceed 70 characters
- Mislead about content
- Overuse punctuation
- Ignore brand voice
## Quality Checklist
Before presenting titles, verify:
- [ ] Accurately represents content
- [ ] Appropriate length (50-60 chars)
- [ ] Contains primary keyword
- [ ] Matches content tone
- [ ] No false promises
- [ ] Grammatically correct
- [ ] Unique from original