core-devtools

Demonstrates how skills work inside a Claude Code plugin.

Updated Mar 19, 2026
One-click install
npx skills add https://github.com/karimStekelenburg/k3m-marketplace --skill core-devtools-karimstekelenburg
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: core-devtools
Source: https://github.com/karimStekelenburg/k3m-marketplace/tree/main/plugins/core-devtools/skills/core-devtools
Command: npx skills add https://github.com/karimStekelenburg/k3m-marketplace --skill core-devtools-karimstekelenburg

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? This Skill provides a minimal working example of how a skill is structured and loaded within a Claude Code plugin, helping plugin authors understand the SKILL.md format. ## Core Features & Use Cases - Skill Structure Example: Shows the required YAML frontmatter with name and description fields. - Plugin Integration Demo: Illustrates how a skill directory fits inside a plugin under the skills/ folder. - Use Case: A developer creating a new Claude Code plugin can reference this skill as a template for authoring their own SKILL.md files. ## Quick Start Ask the assistant to show how the core-devtools example skill works in a Claude Code plugin.

Frequently Asked Questions about core-devtools

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I create a skill for a Claude Code plugin?▼

Create a directory containing a SKILL.md file with YAML frontmatter defining a name and description, followed by Markdown instructions. Place it under the plugin's skills/ folder so it can be discovered and loaded.

What is required in a SKILL.md file?▼

A SKILL.md file must contain YAML frontmatter with at least a name and description field. The Markdown body after the frontmatter provides the operational instructions loaded when the skill activates.

Can a Claude Code skill include scripts or reference files?▼

Yes, a skill may optionally include scripts/, references/, and assets/ directories alongside SKILL.md. This example skill contains none of those, but they can be added for executable or reference resources.

What are the limitations of this example skill?▼

This skill is a demonstration placeholder with no functional logic, scripts, or dependencies. It only illustrates the required file structure and is not intended for real task automation.