learn
Installation
SKILL.md
learn
Research any topic by gathering online resources and creating a comprehensive learning guide with RAG-optimized indexes.
Parse Arguments
const args = '$ARGUMENTS'.split(' ').filter(Boolean);
const depth = args.find(a => a.startsWith('--depth='))?.split('=')[1] || 'medium';
const topic = args.filter(a => !a.startsWith('--')).join(' ');
Input
Arguments: <topic> [--depth=brief|medium|deep]