Install
$ agentstack add skill-quantsquirrel-claude-forge-smith-monitor ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
About
Skill Monitor
스킬 품질을 분석하고 업그레이드 우선순위를 추천합니다.
> 핵심 원칙: 사용량 ≠ 품질. 품질 점수로 추천하고, 사용량은 영향력 지표로만 참고.
Quick Reference
| Step | Action | |------|--------| | 1 | 스킬 목록 스캔 (all scopes) | | 2 | 각 스킬 유형 판별 (explicit/silent) | | 3 | 유형별 품질 점수 계산 | | 4 | 우선순위 기반 추천 생성 | | 5 | 대시보드 출력 |
When to Use
- 어떤 스킬을 업그레이드해야 할지 모를 때
- 스킬 품질 현황을 파악하고 싶을 때
- 유형별(explicit/silent) 분석이 필요할 때
Arguments
| Argument | Description | Default | |----------|-------------|---------| | --priority=HIGH\|MED\|LOW | 특정 우선순위만 표시 | all | | --type=explicit\|silent\|all | 특정 유형만 표시 | all | | --format=table\|json | 출력 형식 | table |
Data Sources
source "${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/local/forge}/hooks/lib/storage-local.sh"
# 스킬 유형 판별
get_skill_type "$skill_name"
# 품질 점수 계산 (유형별 기준 자동 적용)
get_skill_quality_score "$skill_name"
# 사용량 (참고용)
get_all_skills_summary
get_usage_trend "$skill_name"
Execution Steps
Step 1: Scan All Skills
스킬 위치 스캔:
~/.claude/skills/*/SKILL.md
~/.claude/plugins/**/skills/*/SKILL.md
.claude/skills/*/SKILL.md
Step 2: Analyze Each Skill
For each skill:
SKILL_TYPE=$(get_skill_type "$skill_name")
QUALITY_JSON=$(get_skill_quality_score "$skill_name")
USAGE_TREND=$(get_usage_trend "$skill_name")
Step 3: Calculate Priority
품질 기반 우선순위 (사용량과 무관):
| Priority | Condition | Meaning | |----------|-----------|---------| | HIGH | 품질 점수 ` to upgrade.
## Type-Specific Insights
유형별로 다른 개선 제안 제공:
### For Explicit Skills
Missing argument-hint → [HIGH] "Add argument-hint for slash command hints" Missing mode table → [MED] "Document available modes/options"
### For Silent Skills
Few trigger keywords → [HIGH] "Add more trigger keywords for discoverability" Missing Red Flags → [MED] "Add Red Flags section to prevent false positives"
## Red Flags
- DO NOT rank by usage count alone (usage ≠ quality)
- DO NOT modify any skill files (read-only monitoring)
- DO NOT run long-running processes
- DO NOT access external APIs
## Example Usage
User: "/monitor" → Show full dashboard with all skills
User: "/monitor --priority=HIGH" → Show only HIGH priority skills needing improvement
User: "/monitor --type=explicit" → Show only explicit (slash command) skills
User: "어떤 스킬을 업그레이드해야 해?" → Show recommendations sorted by priority
## Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- **Author:** [quantsquirrel](https://github.com/quantsquirrel)
- **Source:** [quantsquirrel/claude-forge-smith](https://github.com/quantsquirrel/claude-forge-smith)
- **License:** MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.