Files
SuperCharged-Claude-Code-Up…/skills/hooks/auto-trigger-integration.json
admin b723e2bd7d Reorganize: Move all skills to skills/ folder
- Created skills/ directory
- Moved 272 skills to skills/ subfolder
- Kept agents/ at root level
- Kept installation scripts and docs at root level

Repository structure:
- skills/           - All 272 skills from skills.sh
- agents/           - Agent definitions
- *.sh, *.ps1       - Installation scripts
- README.md, etc.   - Documentation

Co-Authored-By: Claude <noreply@anthropic.com>
2026-01-23 18:05:17 +00:00

38 lines
1.1 KiB
JSON

{
"name": "auto-trigger-integration",
"description": "Automatically trigger plugins and skills based on task context",
"version": "1.0.0",
"triggers": {
"web_browsing": {
"keywords": ["browse", "search", "fetch", "scrape", "web", "url", "http"],
"skills": ["dev-browser", "agent-browse"],
"priority": "high"
},
"browser_automation": {
"keywords": ["test", "automate", "playwright", "screenshot", "click"],
"skills": ["playwright-skill"],
"priority": "high"
},
"planning": {
"keywords": ["plan", "design", "architecture", "redesign", "strategy"],
"skills": ["planning-with-files"],
"priority": "high"
},
"delegation": {
"keywords": ["delegate", "codex", "gpt", "external model"],
"plugins": ["claude-delegator"],
"priority": "medium"
},
"safety": {
"keywords": ["rm -rf", "delete", "destroy", "force", "clean"],
"plugins": ["claude-code-safety-net"],
"priority": "critical"
},
"monitoring": {
"keywords": ["status", "progress", "context", "monitor"],
"plugins": ["claude-hud"],
"priority": "low"
}
}
}