Skill Developer logo

Skill Developer

Organization
aiskillstore
skill-developer

Claude Code 스킬, 훅, 에이전트, 명령어를 생성하고 관리하기 위한 메타 스킬. 새 스킬 생성, 스킬 트리거 설정, 훅 설정, Claude Code 인프라 관리 시 사용.

Overview

Publisheraiskillstore
Repositorymarketplace
Skill nameskill-developer
Stars
427
Forks
45
Bundled files
1
Links
  • Markdown instructions

    A SKILL.md file the model loads on demand, so it only costs tokens when a request actually matches.

  • Works with any LLM

    AI skills are plain Markdown, not provider-specific code, so this works with GPT, Claude, Gemini, Grok, or a local model.

  • 1 bundled files

    Scripts, templates, and references the model can read while it works. Files are read-only and never executed.

  • Open source

    Published by aiskillstore on GitHub. Read the source before you install it.

Installation

Install the Skill Developer AI skill in TypingMind to use it with any LLM, or drop it into another agent that reads SKILL.md.

1

Install in TypingMind

TypingMind installs a skill straight from its GitHub folder — it reads SKILL.md, bundles the resource files, and stores the result locally.

  1. Open the app and go to Plugins → Skills.
  2. Choose "Install from GitHub".
  3. Paste the skill folder URL below and confirm.
  4. Enable the skill in any chat where you want it available.
Plugins → Skills → Add skill → From GitHub URL, then paste the folder URL and press Continue.
2

Install in another agent

Any agent that reads the Agent Skills format can use this skill — copy the folder into that agent's skills directory.

Claude Code — .claude/skills
git clone --depth 1 https://github.com/aiskillstore/marketplace.git /tmp/marketplace
mkdir -p .claude/skills
cp -r /tmp/marketplace/skills/0chan-smc/skill-developer .claude/skills/skill-developer
Restart Claude Code after copying so it picks up the new skill.

Use it in TypingMind

Enable Skill Developer in any TypingMind chat and the model takes it from there. Its name and description sit in the system prompt, and the moment a request matches, the model loads the full instructions itself — you never invoke it by hand, and it costs no tokens until it is actually used.

The model loads Skill Developer on its own as soon as a request matches it.

Works with any AI model

AI skills are plain Markdown instructions rather than provider-specific code, so Skill Developer is not tied to the model it was written for. Install it once in TypingMind and use it with GPT-5, Claude, Gemini, Grok, DeepSeek, Mistral, Llama, or a local model you run yourself — all on your own API keys.

  • Loaded only when it is needed

    The system prompt carries just the name and description. The instructions are fetched on the first matching request, so an idle skill costs nothing.

  • Switch models mid-chat

    Because the skill is instructions rather than code, changing model does not break it — the next model reads the same SKILL.md.

Skill instructions

This is the SKILL.md content the model loads. Read it before installing — a skill is instructions your model will follow.

Skill Developer Guide

Purpose

Comprehensive guide for creating and managing Claude Code skills, hooks, agents, and commands. This meta-skill helps you build and configure Claude Code infrastructure components.

When to Use This Skill

  • Creating new skills
  • Configuring skill triggers in skill-rules.json
  • Setting up hooks
  • Creating agents
  • Adding slash commands
  • Understanding skill activation patterns
  • Customizing skill behavior

Quick Start

Creating a New Skill

  1. Create skill directory:

    bash
    mkdir -p .claude/skills/{skill-name}
  2. Create SKILL.md file:

    • Add frontmatter with name and description
    • Write comprehensive guidelines
    • Use progressive disclosure (main file + resources/)
  3. Update skill-rules.json:

    • Add skill entry with triggers
    • Configure fileTriggers and promptTriggers
    • Set enforcement and priority

Skill Structure

.claude/skills/
  {skill-name}/
    SKILL.md              # Main skill file
    resources/            # Optional: Additional resources
      pattern-1.md
      pattern-2.md

Skill Configuration

skill-rules.json Structure

json
{
  "version": "1.0",
  "description": "Skill activation triggers",
  "skills": {
    "{skill-name}": {
      "type": "domain" | "guardrail",
      "enforcement": "suggest" | "block" | "warn",
      "priority": "critical" | "high" | "medium" | "low",
      "description": "Skill description",
      "promptTriggers": {
        "keywords": ["keyword1", "keyword2"],
        "intentPatterns": ["regex pattern"]
      },
      "fileTriggers": {
        "pathPatterns": ["app/**/*.tsx"],
        "pathExclusions": ["**/*.test.tsx"],
        "contentPatterns": ["import.*from.*next"]
      }
    }
  }
}

Enforcement Types

  • suggest: Skill suggestion appears but doesn't block execution
  • block: Requires skill to be used before proceeding (guardrail)
  • warn: Shows warning but allows proceeding

Priority Levels

  • critical: Highest - Always trigger when matched
  • high: Important - Trigger for most matches
  • medium: Moderate - Trigger for clear matches
  • low: Optional - Trigger only for explicit matches

File Triggers

Path Patterns

Use glob patterns to match file paths:

json
{
  "pathPatterns": [
    "app/**/*.tsx", // All .tsx files in app/
    "components/**/*.ts", // All .ts files in components/
    "**/*.tsx" // All .tsx files anywhere
  ]
}

Path Exclusions

Exclude files from triggering:

json
{
  "pathExclusions": [
    "**/*.test.tsx", // Test files
    "**/node_modules/**", // Dependencies
    "**/.next/**" // Build output
  ]
}

Content Patterns

Match file content with regex:

json
{
  "contentPatterns": [
    "from '@/components/ui/", // Shadcn imports
    "import.*from.*next", // Next.js imports
    "'use client'" // Client component directive
  ]
}

Prompt Triggers

Keywords

Simple keyword matching:

json
{
  "keywords": ["component", "page", "route", "frontend"]
}

Intent Patterns

Regex patterns for flexible matching:

json
{
  "intentPatterns": [
    "(create|add|make|build).*?component", // Create component
    "(how to|best practice).*?react", // How to questions
    "app router.*?(page|route)" // App router related
  ]
}

Skill Types

Domain Skills

  • Purpose: Provide guidelines for specific domains
  • Example: frontend-dev-guidelines, backend-dev-guidelines
  • Enforcement: Usually "suggest"

Guardrail Skills

  • Purpose: Enforce best practices and prevent mistakes
  • Example: Code quality checks, security rules
  • Enforcement: Usually "block" or "warn"

Best Practices

Skill Design

  1. Progressive Disclosure: Main file + resources/ for detailed guides
  2. Clear Examples: Include working code examples
  3. Quick Reference: Add quick reference tables
  4. When to Use: Clearly state when skill applies

Trigger Configuration

  1. Specific Keywords: Use domain-specific terms
  2. Flexible Patterns: Use regex for intent matching
  3. Path Specificity: Match actual project structure
  4. Avoid Over-triggering: Use exclusions appropriately

File Organization

  1. Modular Structure: Split large skills into resources/
  2. Clear Naming: Use descriptive skill names
  3. Documentation: Document all configuration options

Common Patterns

Tech Stack Specific Skills

json
{
  "frontend-dev-guidelines": {
    "fileTriggers": {
      "pathPatterns": ["app/**/*.tsx", "components/**/*.tsx"],
      "contentPatterns": ["from '@/components/ui/", "import.*from.*next"]
    },
    "promptTriggers": {
      "keywords": ["component", "shadcn", "next.js"],
      "intentPatterns": ["(create|build).*?component"]
    }
  }
}

Framework Agnostic Skills

json
{
  "error-tracking": {
    "fileTriggers": {
      "pathPatterns": ["**/*Controller.ts", "**/*Service.ts"],
      "contentPatterns": ["Sentry\\.", "captureException"]
    },
    "promptTriggers": {
      "keywords": ["error", "sentry", "exception"],
      "intentPatterns": ["(add|implement).*?error.*?handling"]
    }
  }
}

Integration Checklist

When adding a new skill:

  • Create skill directory and SKILL.md
  • Write comprehensive guidelines
  • Add to skill-rules.json
  • Configure fileTriggers (pathPatterns, exclusions, contentPatterns)
  • Configure promptTriggers (keywords, intentPatterns)
  • Set appropriate enforcement and priority
  • Test skill activation
  • Document customization needs

Troubleshooting

Skill Not Triggering

  1. Check pathPatterns match actual file paths
  2. Verify keywords are spelled correctly
  3. Test intentPatterns regex patterns
  4. Check for pathExclusions blocking triggers

Over-triggering

  1. Add more specific pathPatterns
  2. Use pathExclusions to filter out files
  3. Make intentPatterns more specific
  4. Lower priority level

Skill File Not Found

  1. Verify skill directory exists: .claude/skills/{skill-name}/
  2. Check SKILL.md file exists
  3. Verify skill name matches skill-rules.json entry

Related Skills

  • frontend-dev-guidelines: Frontend development patterns
  • backend-dev-guidelines: Backend development patterns

Skill Status: Meta-skill for skill development and management

Bundled files

The model reads these on demand while the skill is loaded. They are exposed as readable files and are never executed.

Frequently asked questions

What does the Skill Developer AI skill do?

Claude Code 스킬, 훅, 에이전트, 명령어를 생성하고 관리하기 위한 메타 스킬. 새 스킬 생성, 스킬 트리거 설정, 훅 설정, Claude Code 인프라 관리 시 사용.

Why use Skill Developer on TypingMind?

Because you install it once and use it with any model. Skill Developer is plain Markdown rather than provider-specific code, so the same skill runs on GPT-5, Claude, Gemini, Grok, or a local model — and you can switch model mid-chat without it breaking. TypingMind runs on your own API keys, so you pay providers directly instead of a per-seat subscription, and your skills and chats stay in your own storage.

How do I install Skill Developer in TypingMind?

Open Plugins → Skills → Install from GitHub in TypingMind and paste https://github.com/aiskillstore/marketplace/tree/main/skills/0chan-smc/skill-developer. TypingMind reads its SKILL.md and bundles its files and installs it as a skill you can enable per chat.

Which AI models can use Skill Developer?

Any model you connect in TypingMind. AI skills are plain Markdown instructions rather than provider-specific code, so GPT, Claude, Gemini, Grok, and local models can all load this skill when a request matches it.

How many AI models can I use with Skill Developer?

As many as you like. As long as a model supports skills, you can use Skill Developer with it — GPT, Claude, Gemini, Grok, DeepSeek, Mistral, Llama and more — all on TypingMind with your own API keys.

Is the Skill Developer AI skill free?

It is published on GitHub by aiskillstore. Check the repository for licensing terms. You only pay your own AI provider for the tokens you use.

What are AI skills?

An AI skill is a reusable instruction bundle that teaches an AI model how to do one specific task. It follows the open Agent Skills format: a SKILL.md file with a name and description, plus any scripts, templates or reference files the model may need. The model reads the instructions only when your request matches the skill, so an installed skill costs nothing until it is used.

How are AI skills different from plugins or MCP servers?

A plugin or MCP server gives a model new tools to call — code that runs somewhere and returns a result. An AI skill gives the model knowledge and process instead: how to approach a task, which steps to follow, what good output looks like. Skills are plain Markdown, so they need no server, no API key and no runtime, and they work with any model.

View all

Set up your own AI workspace now

Get notified about new features and future giveaways by subscribing to our newsletter 👇