Skip to content

Repomix Explorer Skill (Agent Skills)

Repomix एक रेडी-टू-यूज Repomix Explorer स्किल प्रदान करता है जो AI कोडिंग असिस्टेंट को Repomix CLI का उपयोग करके कोडबेस का विश्लेषण और अन्वेषण करने में सक्षम बनाता है।

यह स्किल Claude Code और Agent Skills format support करने वाले अन्य AI assistants के लिए डिज़ाइन किया गया है।

त्वरित इंस्टॉलेशन

Claude Code के लिए official Repomix Explorer plugin install करें:

text
/plugin marketplace add yamadashy/repomix
/plugin install repomix-explorer@repomix

Claude Code plugin /repomix-explorer:explore-local और /repomix-explorer:explore-remote जैसे namespaced commands देता है। पूरी setup के लिए Claude Code Plugins देखें।

Codex, Cursor, OpenClaw और अन्य Agent Skills-compatible assistants के लिए standalone skill को Skills CLI से install करें:

bash
npx skills add yamadashy/repomix --skill repomix-explorer

किसी specific assistant को target करने के लिए --agent पास करें:

bash
npx skills add yamadashy/repomix --skill repomix-explorer --agent codex
npx skills add yamadashy/repomix --skill repomix-explorer --agent openclaw

Hermes Agent के लिए, Hermes Agent के native skills command से single-file skill install करें:

bash
hermes skills install https://raw.githubusercontent.com/yamadashy/repomix/main/.claude/skills/repomix-explorer/SKILL.md

यदि आप Hermes Agent को मुख्य रूप से repository analysis के लिए उपयोग करते हैं, तो MCP Server setup भी अच्छा विकल्प है क्योंकि यह Repomix को सीधे MCP server के रूप में चलाता है।

यह क्या करता है

इंस्टॉल होने के बाद, आप प्राकृतिक भाषा निर्देशों के साथ कोडबेस का विश्लेषण कर सकते हैं।

रिमोट रिपॉजिटरी का विश्लेषण करें

text
"What's the structure of this repo?
https://github.com/facebook/react"

लोकल कोडबेस का अन्वेषण करें

text
"What's in this project?
~/projects/my-app"

यह न केवल कोडबेस को समझने के लिए उपयोगी है, बल्कि तब भी जब आप अपने अन्य रिपॉजिटरी को संदर्भित करके फीचर्स लागू करना चाहते हैं।

यह कैसे काम करता है

Repomix Explorer स्किल AI असिस्टेंट को पूर्ण वर्कफ़्लो के माध्यम से गाइड करता है:

  1. repomix कमांड चलाएं - रिपॉजिटरी को AI-फ्रेंडली फॉर्मेट में पैक करें
  2. आउटपुट फाइलों का विश्लेषण करें - संबंधित कोड खोजने के लिए पैटर्न सर्च (grep) का उपयोग करें
  3. इनसाइट्स प्रदान करें - स्ट्रक्चर, मेट्रिक्स और एक्शनेबल रेकमेंडेशन रिपोर्ट करें

उदाहरण उपयोग मामले

एक नए कोडबेस को समझना

text
"I want to understand the architecture of this project.
https://github.com/vercel/next.js"

AI repomix चलाएगा, आउटपुट का विश्लेषण करेगा और कोडबेस का एक संरचित अवलोकन प्रदान करेगा।

विशिष्ट पैटर्न खोजना

text
"Find all authentication-related code in this repository."

AI ऑथेंटिकेशन पैटर्न खोजेगा, फाइल के अनुसार निष्कर्षों को वर्गीकृत करेगा और बताएगा कि ऑथेंटिकेशन कैसे लागू किया गया है।

अपने प्रोजेक्ट्स का संदर्भ लेना

text
"I want to implement a similar feature to what I did in my other project.
~/projects/my-other-app"

AI आपके अन्य रिपॉजिटरी का विश्लेषण करेगा और आपको अपने स्वयं के इम्प्लीमेंटेशन का संदर्भ लेने में मदद करेगा।

स्किल कंटेंट

स्किल में शामिल है:

  • यूजर इंटेंट रिकग्निशन - समझता है कि यूजर कोडबेस विश्लेषण के लिए विभिन्न तरीकों से कैसे पूछते हैं
  • Repomix कमांड गाइडेंस - जानता है कि कौन से ऑप्शन उपयोग करने हैं (--compress, --include, आदि)
  • एनालिसिस वर्कफ़्लो - पैक किए गए आउटपुट को एक्सप्लोर करने के लिए स्ट्रक्चर्ड अप्रोच
  • बेस्ट प्रैक्टिसेज - एफिशिएंसी टिप्स जैसे पूरी फाइलें पढ़ने से पहले grep का उपयोग करना

संबंधित संसाधन

Released under the MIT License.