ワンクリックで
skill-auto-activator
Keyword-based automatic skill detection and activation system for Claude conversations
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Keyword-based automatic skill detection and activation system for Claude conversations
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
Use this when complex problem-solving, root cause analysis, strategic decision-making, or systematic thinking is needed. Applies 15 thinking methods with multi-agent orchestration and Clear-Thought MCP integration for enhanced analysis quality.
Use when analyzing stakeholder psychology for negotiations, proposals, or persuasion. Creates research-backed personas revealing hidden motivations.
Apply Progressive Disclosure principles to organize large documentation projects. Restructure docs into hierarchical structure, reduce token usage by 95%+, and create README files for navigation.
Use when planning market entry, designing PMF strategy, or applying Toss's 16-question framework. Includes Pain Point Score, Trojan Horse path, 10x improvement guide.
Use when preparing executive reports, evaluating investments, or calculating ROI/break-even/payback period. 30-minute analysis (87.5% time saving). Includes scenario analysis.
Generate standardized document templates (DOCUMENT, TECHNICAL, PROPOSAL, RESEARCH, SECURITY-QA, INDEX) with YAML frontmatter, Quick Reference sections, and consistent structure for professional documentation.
| name | skill-auto-activator |
| description | Keyword-based automatic skill detection and activation system for Claude conversations |
| version | 1.0.0 |
| category | automation |
An automatic system that detects keywords in conversations and suggests or activates relevant skills. Skills are automatically activated in natural conversation flow without manual specification each time.
This skill is automatically activated in the following situations:
/skills/
├── INDEX.yaml # Central metadata (all skill information)
└── skill-auto-activator/
├── SKILL.md # This document
├── skill-auto-activator.py # Auto-activation logic
└── README.md # Detailed guide
User message: "Analyze ROI please"
↓
Extract keywords: ["ROI", "analyze"]
↓
Search INDEX.yaml:
- roi-analyzer: ["ROI", "investment analysis", "financial analysis"] → MATCH!
- market-strategy: ["market analysis", "PMF"] → Partial Match
↓
Calculate confidence scores:
- roi-analyzer: 0.85 (high priority × exact match)
- market-strategy: 0.45 (high priority × partial match)
↓
Recommend skills above threshold (0.7): roi-analyzer ✅
Final score = (keyword matching score × priority multiplier) / max possible score
Keyword matching scores:
- exact_match: 2.0 (exact match)
- compound_match: 1.8 (2+ keywords form one skill keyword)
- use_case_match: 1.5 (use case match)
- partial_match: 1.0 (partial match)
- tag_match: 0.5 (tag match)
Priority multipliers:
- high: 1.5
- medium: 1.0
- low: 0.7
Suggest Mode (Default)
🎯 Recommended Skills:
1. roi-analyzer (Confidence: 85%) - ROI and investment analysis
2. market-strategy (Confidence: 72%) - Market strategy development
Would you like to use these? [Y/n]
Auto Mode (Automatic)
🔄 Auto-activating roi-analyzer skill (Confidence: 85%)
[Running skill...]
activation_config:
mode: "suggest" # suggest | auto
confidence_threshold: 0.7 # Minimum confidence
max_suggestions: 3 # Maximum recommendations
priority_multipliers:
high: 1.5
medium: 1.0
low: 0.7
skills:
[skill-name]:
priority: high # high | medium | low
description: "..."
keywords:
korean: [...]
english: [...]
tags: [...]
use_cases: [...]
auto_activate: true # Allow auto-activation
confidence_threshold: 0.75 # Skill-specific threshold
User: "Analyze this project's ROI and create executive report"
System: 🎯 Detected Skills:
1. roi-analyzer (95%) - ROI and investment analysis
2. template-generator (68%) - Document template generation
Keywords matched:
- roi-analyzer: "ROI", "analyze", "executive report"
- template-generator: "report"
Activating: roi-analyzer ✅
User: "Need PMF strategy for entering new market"
System: 🎯 Detected Skills:
1. market-strategy (92%) - Market entry and PMF strategy
2. toss-patterns (88%) - Apply Toss success patterns
Keywords matched:
- market-strategy: "market entry", "PMF", "strategy"
- toss-patterns: "market entry", "PMF"
Top match: market-strategy ✅
User: "Have a complex problem, want to find root cause"
System: 🎯 Detected Skills:
1. thinking-framework (90%) - Systematic problem solving
2. web-research (45%) - Research and investigation
Keywords matched:
- thinking-framework: "problem", "root cause"
Activating: thinking-framework ✅
/skills/[new-skill]/ directorySKILL.mdINDEX.yaml:
[new-skill]:
priority: medium
keywords: [...]
tags: [...]
For bug reports, feature suggestions, or questions:
/skills/skill-auto-activator/issues/Version: 1.0.0 Last Updated: 2025-11-06 Maintainer: Claude Toolkit Team