अगर आपके Claude Code sessions अभी भी ऐसा लगता है कि आप एक junior engineer को babysit कर रहे हैं जो लिखने से पहले plan करने से इनकार कर रहा है, तो आप अकेले नहीं हैं। 2026 में coding agents के साथ काम करने का ईमानदार संस्करण यह है कि agent तेज़ है, capable है, और structurally optimistic है। यह brainstorm को skip करेगा, test को ignore करेगा, गलत abstraction लिखेगा, और bug को ship करेगा। समाधान बेहतर prompting नहीं है। समाधान agent के ऊपर एक methodology layer है।
वह layer, मेरे लिए, obra/superpowers है — Jesse Vincent का agentic skills framework Claude Code के लिए। May 2026 तक 180,000 GitHub stars के करीब पहुँच रहा है, वर्तमान में v5.1.0 पर है। यह prompt template नहीं है, slash command pack नहीं है, vibe नहीं है। यह एक complete development methodology है जो context के आधार पर automatically trigger होती है, test-driven development को enforce करती है, और काम को 2-5 मिनट के tasks में break करती है explicit specifications के साथ।obra/superpowers — Jesse Vincent's agentic skills framework for Claude Code. Approaching 180,000 GitHub stars as of May 2026, currently at v5.1.0. It is not a prompt template, not a slash command pack, not a vibe. It is a complete development methodology that triggers automatically based on context, enforces test-driven development, and breaks work into 2-5 minute tasks with explicit specifications.
मैं पिछले छह महीने से Superpowers को हर प्रोजेक्ट पर चला रहा हूँ जो मैं करता हूँ — personal site जिस पर आप यह पढ़ रहे हैं, Seahawk Media पर मेरा consulting work, HostList directory, blog के लिए content production, और काफ़ी सारा one-off design और tooling work। उस तरह के usage के बाद ईमानदार take: यह Claude Code workflow में agent के खुद के ship होने के बाद से single biggest productivity change है। यह post असली breakdown है — यह क्या है, मैं इसे five categories में कैसे इस्तेमाल करता हूँ जिनमें मैं काम करता हूँ, और वह हिस्से जिन्हें अभी भी काम की ज़रूरत है।
Superpowers वास्तव में क्या है, 90 सेकंड में
Superpowers Claude Code के लिए एक marketplace plugin के रूप में ship होता है। एक install command:
/plugin install superpowers@claude-plugins-official
इसके बाद, आपका Claude Code agent एक composable skills library तक पहुँच रखता है। हर skill plugin directory में एक markdown file है जो बताता है कि किसी specific workflow — TDD, parallel agent dispatch, code review, brainstorming, plan writing, debugging, और दर्जनों और भी — को कब और कैसे apply करना है। Claude skill metadata पढ़ता है, आपकी conversation में situation को पहचानता है, और relevantly skill को context में automatically pull करता है। ज्यादातर समय आप skills को manually invoke नहीं करते। आप problem describe करते हैं और Claude खुद को route करता है।
वह mental model जो मेरे लिए finally काम कर गया: यह वही है जो हर senior engineering team का tribal knowledge हुआ करता था — unwritten rules कि यह team कैसे plan, test, review, और ship करता है — सिर्फ अब यह एक portable library है जिसे आप किसी भी project पर install कर सकते हैं और agent हर task से पहले इसे पढ़ता है।
सात-stage workflow जो heavy lifting करता है
ज्यादातर value एक core workflow से आता है जिसे Superpowers default के तौर पर enforce करता है। Stages, क्रम में, skill name brackets में:
- Brainstorming — किसी भी code लिखने से पहले idea को सवालों के जरिये refine करना। (brainstorming)
- Worktree isolation — हर non-trivial task एक git worktree में चलता है, आपकी main branch पर नहीं। (using-git-worktrees)
- Plan writing — code छुए बिना काम को 2-5 minute के discrete tasks में break करना exact specifications के साथ। (writing-plans)
- Subagent-driven development — हर task के लिए fresh subagents two-stage review के साथ, ताकि main agent oriented रहे और worker agents focused रहें। (subagent-driven-development)
- Test-driven development — RED-GREEN-REFACTOR mandatory है, optional नहीं। (test-driven-development)
- कोड रिव्यू — गंभीरता के आधार पर रिव्यू और महत्वपूर्ण समस्याओं पर स्पष्ट ब्लॉकिंग। (requesting-code-review)
- ब्रांच समाप्त करना — काम पूरा होने पर संरचित मर्ज या PR निर्णय। (finishing-a-development-branch)
व्यवहार में, आप 10-लाइन के संपादन के लिए सभी सात को मैन्युअल रूप से नहीं चलाते। फ्रेमवर्क कार्य की जटिलता के आधार पर तय करता है कि कौन से चरण लागू होते हैं, और जो अनावश्यक होते हैं उन्हें छोड़ देता है। एक टाइपो फिक्स प्लानिंग स्किल को संक्षेप में चलाता है और TDD को छोड़ देता है। 25,000-पेज की डायरेक्टरी पर एक नई फीचर पूरा सीक्वेंस चलाती है।
ब्लॉग लेखन और SEO के लिए मैं Superpowers का उपयोग कैसे करता हूँ
यह वह use case है जिसके बारे में कोई बात नहीं करता क्योंकि फ्रेमवर्क कोड के लिए बनाया गया था, लेकिन बड़े पैमाने पर कंटेंट प्रोडक्शन भी एक ही समस्या है: संरचित प्लानिंग, समानांतर निष्पादन, और प्रकाशन से पहले रिव्यू। पाँच ठोस पैटर्न जो मैं उपयोग करता हूँ:
1. ड्राफ्ट करने से पहले पोस्ट पर ब्रेनस्टॉर्मिंग
हर पोस्ट ब्रेनस्टॉर्मिंग स्किल से शुरू होती है। मैं विषय को एक या दो लाइनों में बताता हूँ और Claude असली पूछताछ चलाता है: यह कौन पढ़ता है, वे पहले से क्या जानते हैं, विरोधाभासी कोण क्या है, मेरे अपने काम से कौन से विशिष्ट संकेत ड्राफ्ट में होने चाहिए। ज्यादातर पोस्ट जो पहले 90-मिनट की आउटलाइन सेशन लेती थीं, अब 15 मिनट की निर्देशित प्रश्नों में हो जाती हैं और एक अधिक सटीक ब्रीफ तैयार करती हैं।
2. क्लस्टर पोस्ट के लिए प्लान-लेखन
मल्टी-पोस्ट कंटेंट क्लस्टर (इस सप्ताह जो HIPAA क्लस्टर मैंने शिप किया वह सबसे हाल का उदाहरण है) writing-plans स्किल का उपयोग करते हैं। मैं मुख्य विषय का वर्णन करता हूँ, Claude 3-5 सहायक पोस्ट को उनके कोण, आंतरिक-लिंक संरचना, और लक्ष्य कीवर्ड के साथ प्लान करता है। प्लान प्रोजेक्ट में एक markdown फाइल में जाता है। हर पोस्ट एक अलग 30-45 मिनट का कार्य बन जाती है। क्लस्टर एक दिन में शिप होता है, न कि दो सप्ताह में।
3. कीवर्ड रिसर्च के लिए समानांतर एजेंट डिस्पैच
dispatching-parallel-agents स्किल बड़े SEO रिसर्च प्रोजेक्ट को संभव बनाती है। एक कंपिटिटर एनालिसिस के लिए मुझे 8 कीवर्ड के लिए DataForSEO SERPs चाहिए, 4 रैंकिंग कंपिटिटर के लिए कंटेंट ऑडिट चाहिए, और पैरेंट टॉपिक के लिए AI Overview साइटेशन चेक चाहिए। तीन पैरेलल एजेंट बाहर जाते हैं, हर एक स्ट्रक्चर्ड फाइंडिंग के साथ वापस आता है, मेन एजेंट सिंथेसाइज करता है। जो पहले आधा दिन की मैनुअल SERP टॉगलिंग थी, वह अब 10 मिनट की स्ट्रक्चर्ड एनालिसिस है।
4. Test-driven content quality gates
उल्टा लगता है पर काम करता है: मेरे कंटेंट पाइपलाइन के पास टेस्ट सूट है। वर्ड काउंट, Flesch-Kincaid स्कोर, मेटा डिस्क्रिप्शन लेंथ 140-155, banned-words चेक, इंटरनल लिंक मिनिमम, स्कीमा वैलिडिटी, hreflang कम्पलीटनेस। हर ड्राफ्ट गेट से गुजरता है। Superpowers की TDD स्किल इसे एनफोर्स करती है — अगर कोई पोस्ट गेट फेल करती है, तो ड्राफ्ट शिप नहीं होता जब तक फेलियर एड्रेस न हो जाए। प्रोज के लिए RED-GREEN-REFACTOR।
5. Worktree isolation for site-wide content rewrites
जब मैंने इस महीने TRIBE v2 एलाइनमेंट के लिए 17 हीरो कॉपी फिर से लिखीं, तो worktree स्किल ने रीराइट को मेन ब्रांच से अलग रखा जब तक पूरा बैच कंप्लीट और रिव्यू न हो गया। प्रोडक्शन पर कोई हाफ-फिनिश्ड हीरो कॉपी नहीं। यह स्किल अब इतनी हैबिट्यूएट है कि जब दूसरे प्रोजेक्ट के पास यह नहीं होती तो मुझे नोटिस आ जाता है।
मैं Superpowers को डिज़ाइन वर्क के लिए कैसे यूज करता हूँ
Claude Code के ज़रिए डिज़ाइन एक अलग प्रॉब्लम शेप है — Figma एजेंट के हाथ में नहीं है, पर उसके चारों ओर सब कुछ है: design tokens, component specs, कॉपी, स्पेसिंग, एक्सेसिबिलिटी ऑडिट, स्लाइड डेक। तीन पैटर्न जिन पर मैं रिलाई करता हूँ:
1. Token architecture from a brand brief
एक ब्रांड ब्रीफ पर ब्रेनस्टॉर्मिंग + writing-plans एक कंप्लीट design-token स्पेक तैयार करते हैं — primitive लेयर, semantic लेयर, component लेयर — एक सेशन में। Claude design स्किल से (जब यह स्कोप में हो) और writing-plans स्किल से पैरेलल में राउट करता है। आउटपुट CSS वेरिएबल हैं जो कोडबेस के लिए तैयार हैं, कोई Figma फाइल नहीं जिसे किसी को बाद में ट्रांसलेट करना हो।
2. Component spec generation
Receiving-code-review और dispatching-parallel-agents component spec work को संभालते हैं। मैं एक component describe करता हूँ (एक pricing card, एक service hub block, एक comparison table) और Claude पूरी spec लिखता है — props, variants, states, accessibility notes — जिसे एक engineer या कोई दूसरा agent implement कर सके। Spec को parallel agent द्वारा review किया जाता है इससे पहले कि वह handoff किया जाए।
3. Slide-deck production
मेरा सारा presentation work अब Superpowers के माध्यम से चलता है। Narrative की brainstorming, slide structure के लिए writing-plans, chart generation और copy refinement के लिए parallel agents। एक 25-slide deck जो पहले एक दिन का काम होता था अब दो घंटे के guided session में बन जाता है — और slides HTML में ship होते हैं Chart.js के साथ, किसी binary में नहीं जिसे बाद में किसी को recreate करना पड़े।
मैं web development के लिए Superpowers का उपयोग कैसे करता हूँ
यह original use case है और जहाँ framework की depth दिखती है। इस हफ्ते के दो उदाहरण:
WordPress Stack Advisor tool
मैंने WordPress Stack Advisor बनाया — एक free tool जो एक URL लेता है, site को fetch करता है, CMS और 30+ plugins को detect करता है, और Claude-generated stack recommendation return करता है — लगभग 8 working hours के session time में। Brainstorming skill ने input/output spec और system prompt approach produce किया। Writing-plans ने build को discrete tasks में तोड़ा: detection module, Claude integration, UI page, CSP wiring, smoke test। Subagent-driven development ने हर task को isolation में fresh agent context के साथ deliver किया, जबकि main agent ने architectural picture को रखा। Detection module पर TDD ने दो regex bugs को production में आने से पहले catch किया। पूरी चीज़ एक clean PR के रूप में real commit history के साथ out हुई।the WordPress Stack Advisor — a free tool that takes a URL, fetches the site, detects the CMS and 30+ plugins, and returns a Claude-generated stack recommendation — in roughly 8 working hours of session time. The brainstorming skill produced the input/output spec and the system prompt approach. Writing-plans broke the build into discrete tasks: detection module, Claude integration, UI page, CSP wiring, smoke test. Subagent-driven development delivered each task in isolation with a fresh agent context, while the main agent kept the architectural picture. TDD on the detection module caught two regex bugs before they landed in production. The whole thing went out as a clean PR with a real commit history.
HIPAA blog cluster
तीन articles, पूरी तरह cross-linked, hero images के साथ, schema markup के साथ, और existing HIPAA-compliant Next.js post के लिए internal-link structure। Brainstorming ने gap analysis surface किया (जो AccountableHQ cover नहीं करता, जहाँ Reddit threads पुराने हैं)। Writing-plans ने cluster को structure दिया: parent post upgrade, दो नई supporting posts (Supabase + Vercel BAA, AI HIPAA), shared internal-link skeleton। Parallel agents ने DataForSEO SERPs pull किए और Vercel, Supabase, OpenAI, Anthropic, Azure HIPAA pricing पर live web research किया। Subagent-driven development ने हर post produce किया। Cluster एक focused session में ship हुआ।HIPAA-compliant Next.js post. Brainstorming surfaced the gap analysis (what AccountableHQ doesn't cover, where Reddit threads are out of date). Writing-plans structured the cluster: parent post upgrade, two new supporting posts (Supabase + Vercel BAA, AI HIPAA), shared internal-link skeleton. Parallel agents pulled DataForSEO SERPs and live web research on Vercel, Supabase, OpenAI, Anthropic, Azure HIPAA pricing. Subagent-driven development produced each post. The cluster shipped in one focused session.
मैं personal projects के लिए Superpowers का उपयोग कैसे करता हूँ
यह फ्रेमवर्क गैर-कार्य संबंधी समस्याओं के लिए आश्चर्यजनक रूप से अच्छी तरह से अनुकूल हो जाता है। तीन ईमानदार उदाहरण:
ट्रैवल रिसर्च
पारिवारिक छुट्टी की योजना: असली ब्रीफ के लिए ब्रेनस्टॉर्मिंग (बच्चे क्या सहन कर सकते हैं, बजट क्या वास्तविक है, कौन सी तारीखें काम करती हैं), रेस्तरां अनुसंधान, आवास विश्लेषण और यात्रा कार्यक्रम स्कोरिंग के लिए समानांतर एजेंट। आउटपुट एक पृष्ठ की योजना है जिसमें वास्तविक स्रोतों के हवाले हैं, न कि कोई सामान्य सूची। अकेले ब्रेनस्टॉर्मिंग कौशल स्थापना के लायक है — यह उस बातचीत को मजबूर करता है जिसे अधिकांश पारिवारिक योजनाएं छोड़ देती हैं।
वित्त और निर्णय
बड़े व्यक्तिगत वित्तीय निर्णय (बंधक पुनर्वित्तपोषण, संपत्ति खरीद, कार) को वाणिज्यिक कार्य के समान योजना-लेखन उपचार मिलता है। आउटपुट ट्रेड-ऑफ स्पष्ट के साथ एक संरचित तुलना है, न कि कोई विब्स-आधारित सिफारिश। कोड-रिव्यू कौशल — गैर-कोड समीक्षाओं के लिए अनुकूलित — उन लापता विश्लेषणों को पकड़ता है जिन्हें मैं छोड़ गया होता।
मेखुद लेखन अभ्यास के लिए सामग्री
व्यक्तिगत निबंध (ऑफ-स्क्रीन ब्लॉग, कैफे लेखन, तकनीकी प्रतिबिंब) सभी पहले ब्रेनस्टॉर्मिंग से गुजरते हैं। मेरे अधिकांश सर्वश्रेष्ठ व्यक्तिगत लेखन 30 मिनट की Superpowers बातचीत के रूप में शुरू हुए जिसने एक कोण सामने लाया जो मैं अपने आप से नहीं लिखता। कौशल एक सहानुभूतिपूर्ण संपादक की तरह कार्य करता है जो आपको नीरस संस्करण नहीं लिखने देगा।
जहां Superpowers अभी तक भुगतान नहीं करता
- तुच्छ संपादन — एक पंक्ति CSS परिवर्तन, एक एकल टाइपो फिक्स, एक पैराग्राफ कॉपी में बदलाव। Superpowers की ओवरहेड यहां घर्षण बन जाती है। वर्कफ़्लो चरणों को अक्षम करें या एजेंट को सीधे आमंत्रित करें।
- शुद्ध अन्वेषण — जब आप वास्तव में नहीं जानते कि आप क्या बना रहे हैं और पांच त्वरित प्रोटोटाइप के माध्यम से टटोलना चाहते हैं। योजना-लेखन कौशल बहुत जल्दी संरचना करने का प्रयास करता है; मैनुअल मोड तेज़ है।
- समय-दबाव वाली डिबगिंग — प्रोडक्शन डाउन है, आपके पास 10 मिनट हैं, फ्रेमवर्क की पहले-प्लान करने की प्रवृत्ति गलत प्रवृत्ति है। systematic-debugging स्किल का उपयोग करें यदि बिल्कुल जरूरी हो और सात-चरण वाले वर्कफ़्लो को छोड़ दें।
- टीम के अन्य सदस्य जो फ्रेमवर्क का उपयोग नहीं करते। यदि आपका सहयोगी raw Claude Code पर है और आप Superpowers पर हैं, तो आर्टिफ़ैक्ट्स (प्लान फाइलें, worktree शाखाएँ, संरचित कमिट) वर्कफ़्लो को स्पष्ट करने के बजाय भ्रमित करते हैं। या तो सभी इसे चलाएँ या कोई नहीं।
इसे इंस्टॉल करना और पहले 24 घंटे
यदि आप Claude Code पर हैं, तो इंस्टॉलेशन एक कमांड है:
/plugin install superpowers@claude-plugins-official
इंस्टॉल के बाद, स्किलें संदर्भ के आधार पर स्वचालित रूप से लोड होती हैं। आपको इन्हें याद रखने की जरूरत नहीं — Claude स्वयं को राउट करता है। पहले 24 घंटों में सबसे उपयोगी बात यह है कि जानबूझकर एक वास्तविक प्रोजेक्ट चुनें (खिलौना नहीं) और फ्रेमवर्क को चलने दें। एक वास्तविक फीचर पर सात-चरण वाला वर्कफ़्लो ही आपको cadence सिखाता है। README पढ़ना पर्याप्त नहीं है; मूल्य उपयोग के साथ बढ़ता है।
दो कॉन्फ़िगरेशन सुझाव जो मुझे एक सप्ताह कठिन तरीके से सीखने पड़े: worktree निर्देशिका को एक तेज़ SSD पर रखें (worktree स्किल बहुत सारी बनाती है), और स्किल प्लगइन को अपनी dotfiles में जोड़ें ताकि यह मशीनों के बीच चले। नई लैपटॉप पर सेशन शुरू करना और जिस वर्कफ़्लो की आपने आदत डाली है उसे miss करना इससे भी बदतर कुछ नहीं है।
FAQ
क्या Superpowers मुफ़्त है?
हाँ। फ्रेमवर्क एक permissive लाइसेंस के तहत open source है। इंस्टॉल आधिकारिक Claude Code प्लगइन मार्केटप्लेस के माध्यम से बिना किसी लागत के है। आप अभी भी Anthropic को Claude Code उपयोग के लिए मानक दरों पर भुगतान करते हैं — Superpowers इसे नहीं बदलता, लेकिन यह प्रति कार्य अधिक टोकन का उपयोग करता है क्योंकि यह समृद्ध योजनाएँ और समानांतर एजेंट चलाता है। व्यावहारिक रूप से यह मेरे लिए एक सकारात्मक व्यापार रहा है: अधिक टोकन, कम बर्बाद सेशन।
क्या यह Claude Code की built-in skills को replace करता है?
नहीं। Superpowers additive है। Claude Code की अपनी skill system (project-level skills, marketplace plugins) बिल्कुल वैसे ही काम करती है। Superpowers एक methodology layer के रूप में साथ में आता है — seven-stage workflow, TDD enforcement, parallel agent dispatch — जो underlying skills के इस्तेमाल को orchestrate करता है।
क्या यह non-coding tasks के लिए काम करेगा?
हां, कुछ सावधानियों के साथ। यह framework software development के लिए बनाया गया था, और TDD और code-review skills स्पष्ट रूप से code-shaped हैं। लेकिन brainstorming, writing-plans, dispatching-parallel-agents, और worktree skills content production, design, research, और personal projects के लिए साफ़-साफ़ generalize करते हैं। मेरे Superpowers usage का लगभग 40% अब non-code है, और productivity gain comparable है।
यह दूसरे agentic frameworks से कैसे compare करता है?
सबसे करीबी comparisons Cursor के agent mode, Cline, और Aider के planning workflows हैं। Superpowers का differentiator skill library की depth और TDD enforcement है। Cursor और Cline IDE level पर excellent हैं; Superpowers methodology level पर काम करता है। ये complementary हैं, competitive नहीं — मैं Superpowers को Claude Code के अंदर चलाता हूँ जबकि छोटे tasks के लिए Cursor रखता हूँ।
क्या catch है?
दो असली catch हैं। पहला, आपको इसे actually use करना होगा; README पढ़ना और workflow run न करना आपको वही Claude Code के साथ छोड़ देता है जो आपके पास पहले था। दूसरा, framework का plan-first reflex कुछ tasks के लिए गलत है (pure exploration, urgent debugging)। जानना कि workflow को कब disable करें, सीखने की प्रक्रिया का हिस्सा है। regular use के लगभग दो हफ़्तों के बाद, cadence habituated हो जाता है और आप यह सोचना बंद कर देते हैं कि कौन सी skills fire हो रही हैं।
Related reading
Claude Code for WordPress: the workflow my agency runs in 2026 — broader Claude Code agency workflow, जिसमें Superpowers methodology layer के रूप में slot करता है। — the broader Claude Code agency workflow, with Superpowers slotting in as the methodology layer.
WordPress Stack Advisor — एक काम करने वाला टूल जो मैंने Superpowers का इस्तेमाल करके तकरीबन 8 घंटे की session टाइम में, शुरू से अंत तक बनाया। — a working tool I built using Superpowers in roughly 8 hours of session time, end to end.
WordPress alternatives 2026: जब no-code जवाब नहीं है — यह cluster post है जो Superpowers की writing-plans + parallel-research workflow एक ही session में produce किया। — the cluster post that the Superpowers writing-plans + parallel-research workflow produced as a single session.
Agent तेज़ है। Agent सक्षम है। Agent structurally optimistic है। Methodology वह है जो optimism को ship होने से रोकती है।
अगर आप इस बारे में बात करना चाहते हैं कि Superpowers को एक real engineering या content team में कैसे embed करें — लोगों की समस्याएं, workflow design, cost economics — एक 30-minute call बुक करें। मैं यह अभी Seahawk Media पर हर project में चलाता हूँ और ये patterns अलग-अलग team sizes में generalize होते हैं।book a 30-minute call. I run this on every project at Seahawk Media now and the patterns generalise across team sizes.
