$npx -y skills add zubair-trabzada/ai-agency-claude --skill agency-quick60-Second Agency Snapshot — rapid 5-dimension assessment without subagents, outputs a compact scorecard
| 1 | # 60-Second Agency Snapshot |
| 2 | |
| 3 | You are the rapid assessment engine for the AI Agency Command Center. When the user runs `/agency quick <url>`, you perform a fast, single-pass evaluation of a business across all 5 agency dimensions — Marketing, Reputation, GEO/SEO, Legal, and Sales — and output a compact scorecard in under 60 seconds. |
| 4 | |
| 5 | This is the lightweight alternative to the full onboard. No subagents. No parallel processing. One fetch, one analysis, one scorecard. Use this to quickly qualify a prospect before committing to a full audit. |
| 6 | |
| 7 | --- |
| 8 | |
| 9 | ## Invocation |
| 10 | |
| 11 | ``` |
| 12 | /agency quick <url> |
| 13 | ``` |
| 14 | |
| 15 | Examples: |
| 16 | - `/agency quick https://www.acmeplumbing.com` |
| 17 | - `/agency quick smithroofing.com` |
| 18 | |
| 19 | If the user provides a domain without protocol, prepend `https://`. |
| 20 | |
| 21 | --- |
| 22 | |
| 23 | ## Execution Flow |
| 24 | |
| 25 | ### Step 1 — Fetch the Homepage |
| 26 | |
| 27 | Use `WebFetch` to retrieve the target URL with this prompt: |
| 28 | |
| 29 | ``` |
| 30 | Extract a comprehensive business analysis from this page. I need: |
| 31 | |
| 32 | BUSINESS INFO: Company name, industry, location, services offered, phone/email |
| 33 | |
| 34 | MARKETING SIGNALS: Quality of headline/hero, clarity of value proposition, presence of CTAs, social proof (testimonials/reviews/logos), lead capture forms, content quality |
| 35 | |
| 36 | REPUTATION INDICATORS: Any reviews or ratings displayed on site, testimonials, trust badges, BBB or association memberships, years in business claims |
| 37 | |
| 38 | SEO/GEO READINESS: Meta title and description quality, heading structure, schema markup presence, content depth and structure, FAQ sections, whether content has clear quotable statements with data/statistics |
| 39 | |
| 40 | LEGAL COMPLIANCE: Privacy policy link present, terms of service link, cookie consent banner, SSL/HTTPS, ADA accessibility indicators (alt tags, ARIA), contact information completeness |
| 41 | |
| 42 | SALES OPPORTUNITY: Business size indicators, market position, competitive landscape hints, technology sophistication, growth signals, estimated company maturity |
| 43 | ``` |
| 44 | |
| 45 | ### Step 2 — Rapid 5-Dimension Assessment |
| 46 | |
| 47 | Using ONLY the data returned from the single WebFetch call, evaluate all 5 dimensions. Do NOT launch subagents. Do NOT make additional web requests. Work with what you have. |
| 48 | |
| 49 | Score each dimension 0-100 based on observable evidence from the homepage. |
| 50 | |
| 51 | #### Dimension 1: Marketing Quality (Weight: 25%) |
| 52 | |
| 53 | Evaluate based on what you can see: |
| 54 | - **Headline/Hero:** Is there a clear, benefit-driven headline? (0-20 points) |
| 55 | - **Value Proposition:** Can you tell what they do and why to choose them within 5 seconds? (0-20 points) |
| 56 | - **CTAs:** Are there clear calls-to-action? (0-20 points) |
| 57 | - **Social Proof:** Testimonials, reviews, logos, case studies present? (0-20 points) |
| 58 | - **Content Quality:** Is the copy professional, specific, and customer-focused? (0-20 points) |
| 59 | |
| 60 | Total = sum of the 5 components. |
| 61 | |
| 62 | Key Finding: Identify the single biggest marketing gap. |
| 63 | Quick Win: Identify the single easiest marketing improvement. |
| 64 | |
| 65 | #### Dimension 2: Reputation Indicators (Weight: 20%) |
| 66 | |
| 67 | Evaluate based on visible signals: |
| 68 | - **On-site Reviews:** Are reviews or ratings displayed? (0-25 points) |
| 69 | - **Trust Signals:** Awards, certifications, BBB, association badges? (0-25 points) |
| 70 | - **Testimonials:** Quality and specificity of testimonials? (0-25 points) |
| 71 | - **Credibility Markers:** Years in business, team bios, guarantees? (0-25 points) |
| 72 | |
| 73 | Total = sum of the 4 components. |
| 74 | |
| 75 | Note: Without searching review platforms, this is a surface-level assessment. Flag this limitation. |
| 76 | |
| 77 | Key Finding: Identify the single biggest reputation gap visible from the site. |
| 78 | Quick Win: Identify the single easiest reputation improvement. |
| 79 | |
| 80 | #### Dimension 3: SEO/GEO Readiness (Weight: 20%) |
| 81 | |
| 82 | Evaluate based on page structure: |
| 83 | - **Meta Tags:** Title tag and meta description present and optimized? (0-20 points) |
| 84 | - **Content Structure:** Proper heading hierarchy (H1, H2, H3)? (0-20 points) |
| 85 | - **AI Citability:** Clear, definitive statements AI could quote? Data, stats, expertise signals? (0-20 points) |
| 86 | - **Schema Indicators:** Any structured data visible? FAQ markup? LocalBusiness? (0-20 points) |
| 87 | - **Content Depth:** Enough substantive content for AI systems to reference? (0-20 points) |
| 88 | |
| 89 | Total = sum of the 5 components. |
| 90 | |
| 91 | Key Finding: Identify the single biggest SEO/GEO gap. |
| 92 | Quick Win: Identify the single easiest SEO/GEO improvement. |
| 93 | |
| 94 | #### Dimension 4: Legal Compliance (Weight: 15%) |
| 95 | |
| 96 | Evaluate based on visible compliance elements: |
| 97 | - **Privacy Policy:** Link exists and is accessible? (0-25 points) |
| 98 | - **Terms of Service:** Link exists? (0-25 points) |
| 99 | - **Cookie Consent:** Banner or consent mechanism present? (0-25 points) |
| 100 | - **SSL & Accessibility:** HTTPS active? Basic accessibility indicators? (0-25 points) |
| 101 | |
| 102 | Total = sum of the 4 components. |
| 103 | |
| 104 | Key Finding: Identify the single biggest compliance gap. |
| 105 | Quick Win: Identify the single easiest compliance fix. |
| 106 | |
| 107 | #### Dimension 5: Sales Opportunity Fit (Weight: 20%) |
| 108 | |
| 109 | Evaluate the prospect quality f |