skill-createlisted
Install: claude install-skill EngAhmedShehatah/plugin-architect
## What this skill does
Guides creation of a new skill markdown file. Provides the complete template structure, frontmatter schema, required sections, content rules, and validation checklist to ensure the skill is codebase-specific and follows plugin-architect standards.
## How to execute this skill
This skill is fully self-contained and works standalone on any tool.
1. Extract skill `name` from `output_path` (e.g. `/skills/git-detect/SKILL.md` → `git-detect`)
2. Provide the frontmatter schema and body structure (see sections below)
3. Apply `focus_prompt` to ensure codebase-specificity, not generic patterns
4. Generate the validation checklist
5. Return the template and checklist
You can run this skill entirely on your own — no agent orchestration is required.
## Frontmatter schema (required)
```yaml
---
name: <kebab-case-name>
description: <one-line description>
input:
param1: type — description
output:
result1: type — description
---
```
**Rules:**
- `name` must match folder name exactly (folder `git-detect` → `name: git-detect`)
- `description` must be single-line (no multi-line quoted strings)
- `input` and `output` are optional but recommended
## Body structure (required sections in order)
### 1. "What this skill does"
- 1-2 paragraphs explaining purpose, inputs, outputs
- Answer: what problem does this solve?
### 2. "How to execute this skill"
- Numbered steps with concrete, actionable instructions
- Reference inputs by name
- End with: "You can run t