feat: AI Agent Manager Service Page & Pilot Program
AI Agent Manager Service Page & Pilot Program
Overview
Build a dedicated /agents page on squamishai.com. Update the index page to link to it. Ship it so Aaron can show it to local prospects.
This is a marketing hypothesis — frame as “pilot program” with limited availability.
Files
| File | Action |
|---|---|
apps/squamish-ai/src/pages/agents.astro | Create — dedicated service page |
apps/squamish-ai/src/pages/index.astro | Modify — nav link → /agents, replace #agent-management section with teaser + link |
apps/squamish-ai/CLAUDE.md | Modify — document the /agents page |
Page Sections (in order)
1. Hero
Headline: “The AI department your business can actually afford”
Subhead: “I build, run, and improve AI agents for your business. You get the results — blog posts, research, processed data — without learning a single tool.”
CTA: “Let’s Talk” → #contact
2. The Problem
“AI tools are powerful but they’re built for tech people. You shouldn’t have to become one to benefit from them. That’s where I come in.”
3. How It Works (3 steps)
- Discovery — We meet, I learn your business, I identify what to automate
- Build — I design and deploy agents tailored to your workflows
- Deliver — You get results weekly. First agent running within one week of kickoff.
Design: large step numbers (text-6xl font-bold opacity-20), progressive top-border accent (border → primary → accent) to show sequence.
4. What Agents Can Do (outcomes grid)
| Copy |
|---|
| Your blog writes itself every week. Fresh posts that sound like you, published on schedule. |
| Social media that doesn’t eat your evenings. Drafted, reviewed, ready to post. |
| Know what your competitors are doing. Weekly intel in your inbox. |
| Invoices sorted, categorized, flagged. Your bookkeeper gets clean data. |
| A weekly snapshot of your business. Clear numbers, plain English. |
| Turn 200 Google reviews into 3 action items. Patterns you’d never spot manually. |
Show 4-6. End with: “Every business is different — I’ll figure out what moves the needle for yours.”
5. Pilot Program Callout
“Currently accepting 3 pilot clients. Each pilot runs for 90 days. I build and manage your AI agents, cover all costs, and we see the results together. If it’s working, we continue. If not, you walk away — no contracts, no pressure.”
Guarantee: “$500 for the first month — if it doesn’t save you 5 hours a week, I’ll refund you.”
6. Pricing Tiers
Three cards. Highlight Growth as “Recommended” (left border accent in --brand-color-primary, background --brand-color-primary-subtle).
| Starter | Growth | Scale | |
|---|---|---|---|
| Price | $500/mo | $1,500/mo | $3,000+/mo |
| Agents | 2-3 | 5-8 | Custom scope |
| Delivery | Weekly email | Daily email + Slack | Daily + priority |
| Support | Email + Slack | Dedicated channel + strategy calls |
All tiers include: API costs, engineering, monitoring, improvements, and a real human making sure things work.
Pricing anchor: “A part-time hire costs $3,000/mo before benefits. For $500/mo, you get 2-3 AI agents plus a human making sure it’s actually good.”
Per-card CTAs: filled button on Growth, ghost/outline on Starter and Scale. All link to #contact.
7. Why Me (trust signals)
- “Based in Squamish. We can meet for coffee and talk about your business.”
- “I cover all API and infrastructure costs. If the agents aren’t delivering, I’m losing money too.”
- “Anyone can spin up an AI. The value is knowing when to trust it and when to override it.”
- “Cancel anytime. No contracts, no lock-in. I send you results, not homework.”
- “Your data stays on secure, dedicated infrastructure and is never shared.”
8. FAQ (collapsible)
Use native <details>/<summary> — zero JS. Custom CSS chevron that rotates on [open]. Wrap in max-w-2xl mx-auto.
- What is an AI agent? — Software that does a specific job for your business automatically. Like a reliable virtual assistant that works 24/7 on one task.
- What does “I cover API costs” mean? — AI tools charge per use. I pay those costs. Your monthly price is your total price.
- How do you handle my business data? — Your data runs on dedicated, isolated infrastructure. Never mixed with other clients.
- Can I cancel anytime? — Yes. Monthly billing, no contracts. If the agents aren’t delivering value, you shouldn’t be paying.
- How quickly will I see results? — First agent running within one week. Most clients see usable outputs in the first two weeks.
- Do I need to be technical? — No. I handle everything. You get results by email.
- Why not just use ChatGPT myself? — You can. But an agent that runs continuously, monitors results, and improves over time is different from opening a chat window. I build the former.
9. Contact CTA
Headline: “Let’s figure out what AI can do for your business.”
CTA: Email link to aaron@squamishai.com. Full-width section with --brand-color-primary-subtle background tint.
10. SEO Metadata
title: "Managed AI Agents for Your Business | Squamish AI"
description: "AI agents built, run, and improved for your business. Starting at $500/mo. Based in Squamish, BC."
Index Page Update
- Change nav link from
#agent-managementto/agents - Replace the
#agent-managementsection with a brief teaser: headline, 1-2 sentences, “Learn More →” link - Keep teaser to ~10 lines of markup
Patterns to Follow
- Sections:
<section class="py-[var(--brand-section-padding)] px-4">— use the existing token, same as index page - Wide content:
max-w-[var(--brand-container-max)]for grids - Narrow content:
max-w-[var(--brand-content-max)]for text sections (hero, FAQ) - Cards: Inline
.map()over arrays — no extracted components - Colors: All via
var(--brand-color-*)— no hardcoded values - Section headers: Cyan eyebrow label above h2 (consistent with index)
- Layout imports:
SiteLayoutfrom../layouts/SiteLayout.astro(local),SiteHeader/SiteFooter/BusinessDirectoryfrom@repo/ui - Voice: Sharp, confident, accessible. No buzzwords, no hype, no “revolutionary” or “leverage.”
Acceptance Criteria
Verifiable
-
/agentspage loads and renders all 9 sections - Pricing tiers display with Growth visually highlighted
- FAQ is collapsible via
<details>/<summary>(no JS) - Nav links: index →
/agents, agents page →#contact - Index
#agent-managementsection replaced with teaser linking to/agents - Page is self-contained — cold visitor understands the offering without homepage context
- All colors use CSS custom properties
- Responsive: mobile, tablet, desktop
-
pnpm build --filter=squamish-aisucceeds
Qualitative
- Page follows brand voice (no buzzwords, no hype)
- Aaron feels excited showing it to people
Next Steps (after shipping)
- Approach 1-2 Squamish businesses from Aaron’s network
- Use the page as a leave-behind / reference in conversations
- Document time, API costs, and outcomes for future case studies
References
- Brainstorm:
docs/brainstorms/2026-03-07-ai-agent-manager-brainstorm.md - Brand config:
apps/squamish-ai/brand.config.ts - Brand CSS:
apps/squamish-ai/src/styles/brand.css - Existing page:
apps/squamish-ai/src/pages/index.astro - Overnight agent architecture:
docs/solutions/architecture-patterns/overnight-autonomous-agent.md