askill
managing-skills

managing-skillsSafety 95Repository

Manages the skill ecosystem and maintains quality. Provides skill status overview, quality analysis, issue diagnosis, improvement suggestions, auto-fixes, and new skill creation guides. Use for "스킬 분석", "스킬 현황", "스킬 만들기", "스킬 개선" requests.

4 stars
1.2k downloads
Updated 2/7/2026

Package Files

Loading files...
SKILL.md

Skill Manager

Manage and maintain the skill ecosystem.

Commands

Analyze All Skills

# List all skills with line counts
for f in **/SKILL.md; do
  name=$(grep "^name:" "$f" | cut -d: -f2)
  lines=$(wc -l < "$f")
  echo "$lines $name"
done | sort -rn

Check Skill Quality

Validate against official guidelines:

  • Name uses gerund form (verb-ing)
  • Description in third person English
  • Under 500 lines
  • Has "when to use" in description

Create New Skill

mkdir -p .claude/skills/new-skill
cat > .claude/skills/new-skill/SKILL.md << 'EOF'
---
name: doing-something
description: Does X when Y. Use for "keyword" requests.
---

# Skill Title

## Quick Start
...
EOF

Skill Template

---
name: verbing-noun          # gerund form
description: Does X. Use for "keyword" requests.  # third person
---

# Title

## Quick Start
[Essential commands/workflow]

## Workflow
[Step-by-step guide]

## Best Practices
**DO:** ...
**DON'T:** ...

Quality Checklist

CheckRequirement
NameGerund form (managing-x)
DescriptionThird person, <1024 chars
Length<500 lines
StructureQuick start + workflow
ReferencesOne level deep only

See references/SKILL_TEMPLATE.md for full template.

Install

Download ZIP
Requires askill CLI v1.0+

AI Quality Score

78/100Analyzed 2/16/2026

A well-structured meta-skill for managing skill ecosystems with actionable commands, templates, and quality checklists. Somewhat tailored to the specific repo structure but contains reusable concepts.

95
85
65
75
80

Metadata

Licenseunknown
Version-
Updated2/7/2026
Publisherjiunbae

Tags

github-actionsllm