MCP HubMCP Hub
Вернуться к навыкам

skill-creator

vamseeachanta
Обновлено Today
13 просмотров
3
2
3
Посмотреть на GitHub
Другое

О программе

Создатель навыков помогает разработчикам создавать пользовательские навыки Claude Code с правильной структурой и документацией. Он предоставляет шаблоны и лучшие практики для создания навыков под конкретные области или рабочие процессы. Используйте его при разработке организационных навыков или автоматизации специализированных задач.

Быстрая установка

Claude Code

Рекомендуется
Основной
npx skills add vamseeachanta/workspace-hub
Команда плагинаАльтернативный
/plugin add https://github.com/vamseeachanta/workspace-hub
Git клонированиеАльтернативный
git clone https://github.com/vamseeachanta/workspace-hub.git ~/.claude/skills/skill-creator

Скопируйте и вставьте эту команду в Claude Code для установки этого навыка

Документация

Skill Creator

Overview

This skill guides the creation of new Claude Code skills. Skills are specialized instruction sets that enhance Claude's capabilities for specific domains, tasks, or workflows.

When to Use

  • Building custom skills for specific domains
  • Creating reusable workflow templates
  • Standardizing organizational processes
  • Extending Claude Code capabilities
  • Documenting specialized knowledge

Quick Start

  1. Define scope - Answer: What problem? Who uses it? What outputs?
  2. Create structure - .claude/skills/skill-name/SKILL.md
  3. Write frontmatter - Name, description, version, category
  4. Add content - Overview, Instructions, Examples, Best Practices
  5. Test - Verify skill triggers correctly
# Create skill directory
mkdir -p .claude/skills/my-new-skill

# Create SKILL.md with template
cat > .claude/skills/my-new-skill/SKILL.md << 'EOF'
---
name: my-new-skill
description: Action-oriented description. Use for X, Y, and Z.
version: 1.0.0
category: [builders|tools|content-design|communication|meta]
---

# My New Skill

## Overview
[1-2 sentences explaining purpose]

## When to Use
- Scenario 1
- Scenario 2

## Prerequisites
- Dependency 1
- Dependency 2

## Version History
- **1.0.0** (YYYY-MM-DD): Initial release
EOF

Prerequisites

  • Familiarity with YAML frontmatter
  • Understanding of markdown structure
  • Knowledge of the skill category taxonomy

Deprecation

When retiring a skill:

---
name: old-skill-name
description: DEPRECATED - Use new-skill-name instead. [Original description]
deprecated: true
deprecated_date: 2026-01-02
replacement: new-skill-name
---

Quality Tiers

Skills are classified into quality tiers (A/B/C/D) based on enforcement level:

  • Tier A — Script-wired: frontmatter scripts: list with >=1 entry
  • Tier B — Exec-pattern: body contains bash scripts/, uv run, or bash .claude/skills/
  • Tier D — Decomposition candidate: >500 words with no script refs (split recommended)
  • Tier C — Focused prose: everything else

Target Tier A or B for new skills. See config/skills/quality-tiers.yaml.

Related Skills

Version History

  • 2.2.0 (2026-03-05): Deduplicated hub SKILL.md; trimmed to <200 lines
  • 2.1.0 (2026-03-04): Synced critical rules with Anthropic official guide
  • 2.0.0 (2026-01-02): Upgraded to v2 template
  • 1.0.0 (2024-10-15): Initial release

Sub-Skills

GitHub репозиторий

vamseeachanta/workspace-hub
Путь: .claude/skills/_internal/builders/skill-creator

Похожие навыки

legal-sanity-review

Другое

This mandatory workflow scans code for legal risks like client names or proprietary references before cross-review. It blocks the review cycle if violations are found, requiring fixes first. Use it as a pre-gate for PR creation, code porting, or any cross-review trigger.

Просмотреть навык

brainstorming

Другое

The brainstorming skill transforms initial ideas into detailed specifications through iterative questioning and collaborative dialogue. It helps developers explore design options, evaluate trade-offs, and create shared understanding before implementation. This prevents rework by systematically refining concepts into actionable plans.

Просмотреть навык

repo-cleanup-progress-tracking-commands

Другое

This sub-skill provides shell commands for tracking file counts during repository cleanup operations, specifically for hidden folders like `.claude` and `.agent-os`. It includes verification scripts to ensure no files are lost after merging changes. Use it when consolidating or reorganizing project directories to monitor progress and validate results.

Просмотреть навык

brainstorming-error-handling

Другое

This Claude Skill provides structured guidance for handling common brainstorming roadblocks like conflicting requirements or scope creep. It offers specific action templates to resolve issues such as unclear responses or analysis paralysis. Developers should use this reference skill to maintain productive brainstorming sessions within Claude Code.

Просмотреть навык