ग्राहक साइट बदलने से पहले Claude Code की अनुमति चेकलिस्ट
एजेंसी टीमों के लिए सुरक्षित AI संपादन: केवल पढ़ने, संपादन योग्य और निषिद्ध हिस्से तय करने का तरीका.
एजेंसी के काम में रोज छोटे बदलाव आते हैं: लैंडिंग पेज का CTA, मुख्य शीर्षक, अभियान की तारीख या केस स्टडी की शुरुआत। Claude Code तेजी से मदद कर सकता है, लेकिन ग्राहक की साइट में गति से पहले सीमा साफ होना जरूरी है।
यह चेकलिस्ट उन वेब एजेंसियों, मार्केटिंग टीमों और सलाहकारों के लिए है जो WordPress, Astro, Next.js या फॉर्म वाली लैंडिंग पेज संभालते हैं।
मुख्य बातें
- संपादन से पहले फाइलों को केवल पढ़ने, संपादन योग्य और निषिद्ध हिस्सों में बाँटें।
- diff, build, link check और mobile check Claude Code करे। ग्राहक की स्वीकृति और प्रकाशन इंसान करे।
- ग्राहक डेटा, विज्ञापन टैग, फॉर्म गंतव्य, analytics, payment और कानूनी कॉपी को सुरक्षित रखें।
- अकेले शुरू करने के लिए मुफ्त PDF, दोहराए जाने वाले workflow के लिए setup guide और टीम वाले ग्राहक काम के लिए परामर्श चुनें।
अनुमति को तीन स्तरों में बाँटें
एजेंसी में दुर्घटनाएँ अक्सर scope की गलती से होती हैं। “बटन बदलो” से shared header या pixel तक बदल जाता है।
| स्तर | अर्थ | उदाहरण |
|---|---|---|
| Read-only | देख सकता है, edit नहीं | current LP, reference, old CTA |
| Editable | इस task में edit allowed | target page, copy file |
| Forbidden | जरूरत न हो तो न खोले, edit कभी नहीं | .env, customer list, pixel, payment |
सीमा लिखने से Claude Code स्थिर और छोटा diff देता है।
Claude Code की भूमिका
Claude Code diff बनाता है, लिंक बचाकर रखता है, build चलाता है और mobile check करता है। इंसान brand tone, कानूनी दावे और प्रकाशन का निर्णय करता है।
कॉपी करने योग्य निर्देश
Change only the CTA copy on this client landing page.
Editable:
- site/src/pages/campaign.astro
- site/src/content/campaign-copy.ts
Read-only:
- site/src/layouts/BaseLayout.astro
- site/src/components/Header.astro
Do not touch:
- .env*
- form action / submission destination
- analytics, ads, or pixel code
- pricing, contracts, legal, privacy policy
Task:
1. Make the CTA headline shorter
2. Change the button label to "Book a free consultation"
3. Keep the link target as /training/
4. Run npm run build
5. Report the diff and verification result
Context पढ़ना edit permission नहीं है.
सुरक्षा जांच script
const diff = process.env.DIFF_TEXT || "";
const forbidden = [".env", "gtag(", "fbq(", "stripe", "customer_email"];
const hits = forbidden.filter((word) => diff.includes(word));
if (hits.length) {
console.error("possible forbidden diff:", hits.join(", "));
process.exit(1);
}
console.log("forbidden-word check passed");
git diff को DIFF_TEXT में दें. यह perfect नहीं, पर common mistakes पकड़ता है.
तीन उपयोग उदाहरण
1. Landing button copy सिर्फ target page editable. Form, tags और pricing forbidden.
2. Case-study intro छोटा करना Old examples read-only, target article editable. Customer names और numbers human approve करे.
3. Campaign date बदलना Date OGP, structured data, CTA और form deadline को छूती है. Claude Code impact list करे, owner publish approve करे.
गलतियाँ
गलती 1: “इसे बेहतर कर दो” Scope wide हो जाता है. Files list करें.
गलती 2: forbidden list नहीं .env, ads, payment, forms जरूर लिखें.
गलती 3: build के बाद publish Public URL, h1, link और mobile check करें.
गलती 4: approval से पहले strong claims “Guaranteed” या “No.1” proof मांगते हैं.
CTA: अगला कदम
अकेले सीख रहे हैं तो मुफ्त cheatsheet पास रखें। CLAUDE.md, permissions, hooks और setup को मानक बनाना हो तो setup guide देखें। ग्राहक परियोजनाओं में टीम workflow बनाना हो तो परामर्श लें।
Permissions guide और team rollout risk register भी पढ़ें।
अनुमति जांच को कमाई के रास्ते से जोड़ें
एजेंसी प्रोजेक्ट में अनुमति जांच केवल तकनीकी सुरक्षा नहीं है। CTA बदलना, मुफ्त PDF बटन जोड़ना, Gumroad उत्पाद लिंक लगाना या consultation form की ओर भेजना ग्राहक की lead measurement को सीधे बदलता है। इसलिए Claude Code को दी गई task में edit करने योग्य UI के साथ वे चीजें भी लिखें जिन्हें टूटना नहीं चाहिए।
Form submit event, thank-you page URL, campaign parameter, product link और contact email को एक ही checklist में रखें। Public verification सिर्फ HTTP 200 देखकर पूरी नहीं होती। वह तब पूरी होती है जब मोबाइल पर पाठक बटन देख सके, सही पेज पर जा सके और next action बिना confusion के कर सके।
हर release के बाद client name, owner, public URL, primary CTA और rollback method एक line में लिखें। यह छोटी note अगली campaign, urgent copy change और handoff में वही निर्णय दोहराने से बचाती है।
असल result
मैंने checklist को landing CTA edit पर लगाया. Editable files दो रखीं, form और tracking forbidden, फिर build और mobile check किया.
सबसे बड़ा gain read-only और editable अलग करने से मिला. Claude Code context पढ़ सका, पर diff छोटा रहा.
संबंधित लेख
Claude Code Permission Risk Register: agent के action से पहले सीमा तय करें
Claude Code permission risk register बनाकर safe reads, reversible edits, deploys और owner approval अलग करें।
Claude Code CLAUDE.md Permission Recipe: दोहराया context और risky access घटाना
CLAUDE.md rules, permission boundaries और proof commands को जोड़ने वाली beginner-friendly recipe।
Claude Code permission safety ladder: access धीरे-धीरे बढ़ाएं
read-only से limited edits, proof commands और deploy checks तक permission बढ़ाने की सुरक्षित ladder.
मुफ़्त PDF: Claude Code cheatsheet
Email डालें और commands, review habits तथा safe workflow वाली एक-page PDF पाएँ.
हम आपका data सुरक्षित रखते हैं और spam नहीं भेजते.
लेखक के बारे में
Masa
Claude Code workflow और team adoption पर काम करने वाला engineer.