Skill v1.0.1
currentAutomated scan100/100+2 new
version: "1.0.1" name: skill-status context: fork background: false classification: workflow classification-reason: "Reports loaded skill inventory across core and project layers. Read-only status check workflow." deprecation-risk: none effort: low description: | Show loaded skill inventory — bkit core vs project-local, conflicts, coverage gaps. Triggers: skill-status, skill list, 스킬 상태, 스킬 목록. argument-hint: "/skill-status [--detail] [--conflicts]" user-invocable: true allowed-tools:
- Read
- Glob
- Grep
- Bash
skill-status - Skill Inventory Report
로드된 스킬 목록을 core(bkit 기본)와 project-local로 구분하여 표시.
Command: /skill-status
Step 1: Scan Core Skills
- Read bkit core skills directory:
~/.claude/plugins/cache/bkit-marketplace/bkit/*/skills/
- For each skill directory, read SKILL.md frontmatter:
- name, classification, description (first line)
- Count total core skills
Step 2: Scan Project-Local Skills
- Read project skills directory:
.claude/skills/project/*/SKILL.md
- For each skill, read frontmatter
- Count total project skills
Step 3: Detect Conflicts
- Compare skill names between core and project
- If same name exists in both: mark as "override" (project wins)
- If project skill triggers overlap with core: mark as "shadow"
Step 4: Display Report
Skill Status Report====================Layer: bkit Core (v1.6.2)Skills: 28 loaded-----------------------------------------------Name | Type | Classification--------------------|------------|---------------pdca | workflow | PDCA lifecycleenterprise | workflow | Enterprise initbkit-rules | capability | Auto-apply rulescode-review | workflow | Code analysis... (truncated)Layer: Project-Local (hunikflow)Skills: 8 loaded-----------------------------------------------Name | Type | Classification--------------------|------------|---------------btw | workflow | BTW suggestionsskill-create | workflow | Skill generatorskill-status | workflow | This reporthunikflow-model | capability | @Flow patternshunikflow-proxy | capability | DataProxy patternshunikflow-domain | capability | ERP domain logichunikflow-i18n | capability | i18n CSV guidehunikflow-dynamic-api| capability | Dynamic API guideConflicts: 0 overrides, 0 shadowsSummary: 36 total skills (28 core + 8 project)
Options
`/skill-status --detail`: Show full descriptions and trigger keywords for each skill.
`/skill-status --conflicts`: Show only skills with naming conflicts or trigger overlaps.
Skill Layer Priority
Priority (high to low):1. .claude/skills/project/ (project-local, git-tracked)2. ~/.claude/plugins/.../skills/ (bkit core, plugin-managed)3. ~/.claude/skills/ (user global, if any)
When a project skill has the same name as a core skill, the project skill takes precedence. This is the "2-layer override" pattern.