CLAUDE.md और Skills में मुख्य अंतर क्या है?	CLAUDE.md हर बातचीत में लोड होता है और project-wide standards के लिए है, जबकि Skills on-demand लोड होते हैं और task-specific expertise के लिए हैं।
Skills को कब use करना चाहिए?	जब आपके पास task-specific knowledge हो, जो कभी-कभी relevant हो, या detailed procedures हों जो हर बातचीत को cluttered न करें।
Subagents का मुख्य उद्देश्य क्या है?	Subagents isolated execution contexts में काम करते हैं - वे एक task को independently handle करते हैं और main conversation से अलग रहते हैं।
Hooks और Skills में क्या अंतर है?	Hooks event-driven हैं (file save, tool calls पर fire होते हैं), जबकि Skills request-driven हैं (आप जो पूछते हैं उसके आधार पर activate होते हैं)।
MCP servers का क्या role है Claude Code में?	MCP servers external tools और integrations provide करते हैं - ये skills से एक अलग category हैं।
CLAUDE.md में क्या रखना चाहिए?	Project-wide standards, constraints (जैसे "database schema modify न करें"), और framework preferences/coding style।
एक typical Claude Code setup में कौन से components होने चाहिए?	CLAUDE.md (always-on standards), Skills (task-specific), Hooks (automated operations), Subagents (isolated contexts), और MCP servers (external tools)।
Subagents को कब use करना चाहिए?	जब आप किसी task को separate execution context में delegate करना चाहते हों, या different tool access की जरूरत हो, या main context से isolation चाहिए।
Skills का activation कैसे होता है?	Skills request-driven हैं - जब Claude किसी request को skill से match करता है, तो उस skill के instructions conversation में join होते हैं।
Hooks का उपयोग किन situations में करना चाहिए?	Operations जो हर file save पर run हों, specific tool calls से पहले validation, या Claude के actions के automated side effects के लिए।
