CCM
/Skills
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Claude Code Marketplaces

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Skill index
  • MCP index
  • Marketplace index
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by mertbuilds.com

Independent project, not affiliated with Anthropic
dkyazzentwatwa avatar

Skill Creator

dkyazzentwatwa/chatgpt-skills
153 installs86 stars
Summary

If you're building skills for Claude or other agents and tired of validation errors, missing metadata, or bloated instructions, this handles the scaffolding. It spins up new skills with the right folder structure, generates agent YAML files from explicit parameters, validates frontmatter and dependencies, and packages everything into a distributable zip. The workflow pushes you toward focused, triggerable skills with short SKILL.md files and detailed references tucked away. It's opinionated about keeping things minimal and mechanically correct, which is exactly what you want when you're maintaining more than a couple of these.

Install to Claude Code

npx -y skills add dkyazzentwatwa/chatgpt-skills --skill skill-creator --agent claude-code

Installs into .claude/skills of the current project.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Files
SKILL.mdView on GitHub

Skill Creator

Design or refactor skills so they are small, triggerable, and mechanically valid.

Workflow

  1. Define the exact user requests that should trigger the skill.
  2. Keep SKILL.md short and put deep detail in references/.
  3. Add only the scripts, assets, or references that make execution materially more reliable.
  4. Generate agents/openai.yaml and validate before packaging.

Scripts

  • scripts/init_skill.py initializes a new skill with optional resource folders and agents/openai.yaml.
  • scripts/generate_openai_yaml.py writes agents/openai.yaml from explicit interface values.
  • scripts/quick_validate.py enforces strict frontmatter, directory naming, agent metadata, and script dependency rules.
  • scripts/package_skill.py validates first, then zips the skill for distribution.

Rules

  • Keep frontmatter to name and description only.
  • Make description do the trigger work: what the skill does and when to use it.
  • Match the folder name exactly to name.
  • Prefer one focused workflow over a kitchen-sink skill.
  • Remove placeholder files and generic boilerplate before publishing.

Typical Commands

python3 skill-creator/scripts/init_skill.py my-skill --path .
python3 skill-creator/scripts/generate_openai_yaml.py my-skill \
  --interface display_name="My Skill" \
  --interface short_description="One-line summary" \
  --interface default_prompt="Help me use this skill."
python3 skill-creator/scripts/quick_validate.py my-skill
python3 skill-creator/scripts/package_skill.py my-skill ./dist
Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
MCP-ready Email SendingMCP-ready Email Sending
MCP-ready Email Sending
Plug Mailtrap into your AI workflow and let it handle the email.
Connect Mailtrap MCP →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Capacitor - Shared memory for your team’s coding agents.
Capacitor - Shared memory for your team’s coding agents.
Make coding agent sessions - Searchable, Shareable, Vendor-neutral & Scored.
Try For Free →
CodeScene MCP ServerCodeScene MCP Server
CodeScene MCP Server
Your agent targets a perfect 10 Code Health score. Deterministic. Every commit.
Try For Free →
Give your AI the whole web as clean markdownGive your AI the whole web as clean markdown
Give your AI the whole web as clean markdown
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
belt - the only tool your agent needs
belt - the only tool your agent needs
belt cli automatically finds the best tools and skills for your agent. image, video, music, tts...
one prompt install →
inference shell
inference shell
create and run specialised agents in minutes
build now →
Categories
Code Review & QualityAI & Agent BuildingSkill Development
First SeenJun 3, 2026
View on GitHub

More from dkyazzentwatwa/chatgpt-skills

All 20 skills →
  • Citation Bibliography Generator147
  • Gantt Chart Creator129
  • Scientific Paper Figure Generator124
  • Background Remover123
  • Table Extractor123
  • Budget Analyzer116
  • Ocr Document Processor4.7k
  • Crypto Ta Analyzer1.6k
  • Text Summarizer699
  • Financial Calculator487
  • Document Converter Suite467
  • Image Enhancement Suite274
  • Qr Code Generator235
  • Data Storyteller221
  • Roi Calculator196
  • Svg Precision188
  • Mcp Builder183
  • Stock Screener183
  • Report Generator154

Recommended

More Code Review & Quality →
proffesor-for-testing avatar
mobile-testing

proffesor-for-testing/agentic-qe

Comprehensive mobile testing for iOS and Android platforms including gestures, sensors, permissions, device fragmentation, and performance. Use when testing native apps, hybrid apps, or mobile web, ensuring quality across 1000+ device variants.
153
434
aakash-dhar avatar
security-audit

aakash-dhar/claude-skills

Scans code for security vulnerabilities including injection attacks, authentication flaws, exposed secrets, insecure dependencies, and data exposure. Use when the user says "security review", "is this secure?", "check for vulnerabilities", "audit this", or before deploying to production.
152
bobmatnyc avatar
espocrm-development

bobmatnyc/claude-mpm-skills

Comprehensive guide for developing on EspoCRM - metadata-driven CRM with service layer architecture
152
68
rysweet avatar
email-drafter

rysweet/amplihack

Generates professional emails from bullet points or conversation summaries. Use when you need to draft emails quickly with consistent style and tone. Supports multiple tones: formal, casual, technical Supports contexts: status updates, requests, announcements, follow-ups
150
71
xmanrui avatar
openclaw-bot-dashboard

xmanrui/openclaw-bot-dashboard

Launch and manage the OpenClaw Dashboard web UI for monitoring all your bots, agents, models, and sessions. Automatically detects OS, checks for updates, installs dependencies, and starts the development server. Supports macOS, Windows, and Linux with automatic git detection and fallback download methods. Triggers include "打开机器人大盘", "打开 OpenClaw-bot-review", "打开Openclaw大盘", "打开 bot review", "open openclaw dashboard", "open OpenClaw-bot-review", "open bot dashboard", "open bot review", "launch bot review".
150
3
delphine-l avatar
folder-organization

delphine-l/claude_global

Best practices for organizing project folders, file naming conventions, and directory structure standards for research and development projects
149
17