@growthub/cli 0.3.52 → 0.3.53

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (38) hide show
  1. package/assets/worker-kits/growthub-geo-seo-v1/.env.example +12 -0
  2. package/assets/worker-kits/growthub-geo-seo-v1/QUICKSTART.md +138 -0
  3. package/assets/worker-kits/growthub-geo-seo-v1/brands/NEW-CLIENT.md +104 -0
  4. package/assets/worker-kits/growthub-geo-seo-v1/brands/_template/brand-kit.md +116 -0
  5. package/assets/worker-kits/growthub-geo-seo-v1/brands/growthub/brand-kit.md +117 -0
  6. package/assets/worker-kits/growthub-geo-seo-v1/bundles/growthub-geo-seo-v1.json +54 -0
  7. package/assets/worker-kits/growthub-geo-seo-v1/docs/geo-seo-fork-integration.md +244 -0
  8. package/assets/worker-kits/growthub-geo-seo-v1/docs/pdf-report-layer.md +139 -0
  9. package/assets/worker-kits/growthub-geo-seo-v1/docs/scoring-methodology.md +230 -0
  10. package/assets/worker-kits/growthub-geo-seo-v1/docs/subagent-dispatch.md +273 -0
  11. package/assets/worker-kits/growthub-geo-seo-v1/examples/citability-sample.md +155 -0
  12. package/assets/worker-kits/growthub-geo-seo-v1/examples/geo-audit-sample.md +126 -0
  13. package/assets/worker-kits/growthub-geo-seo-v1/examples/pdf-report-sample.md +207 -0
  14. package/assets/worker-kits/growthub-geo-seo-v1/examples/prospect-proposal-sample.md +184 -0
  15. package/assets/worker-kits/growthub-geo-seo-v1/growthub-meta/README.md +124 -0
  16. package/assets/worker-kits/growthub-geo-seo-v1/growthub-meta/kit-standard.md +116 -0
  17. package/assets/worker-kits/growthub-geo-seo-v1/kit.json +102 -0
  18. package/assets/worker-kits/growthub-geo-seo-v1/output/README.md +114 -0
  19. package/assets/worker-kits/growthub-geo-seo-v1/output-standards.md +143 -0
  20. package/assets/worker-kits/growthub-geo-seo-v1/runtime-assumptions.md +175 -0
  21. package/assets/worker-kits/growthub-geo-seo-v1/setup/check-deps.sh +80 -0
  22. package/assets/worker-kits/growthub-geo-seo-v1/setup/clone-fork.sh +56 -0
  23. package/assets/worker-kits/growthub-geo-seo-v1/setup/verify-env.mjs +152 -0
  24. package/assets/worker-kits/growthub-geo-seo-v1/skills.md +359 -0
  25. package/assets/worker-kits/growthub-geo-seo-v1/templates/brand-visibility-report.md +101 -0
  26. package/assets/worker-kits/growthub-geo-seo-v1/templates/citability-analysis.md +131 -0
  27. package/assets/worker-kits/growthub-geo-seo-v1/templates/client-proposal.md +172 -0
  28. package/assets/worker-kits/growthub-geo-seo-v1/templates/content-analysis.md +136 -0
  29. package/assets/worker-kits/growthub-geo-seo-v1/templates/crawler-access-report.md +115 -0
  30. package/assets/worker-kits/growthub-geo-seo-v1/templates/geo-audit-brief.md +114 -0
  31. package/assets/worker-kits/growthub-geo-seo-v1/templates/geo-score-summary.md +113 -0
  32. package/assets/worker-kits/growthub-geo-seo-v1/templates/llmstxt-plan.md +173 -0
  33. package/assets/worker-kits/growthub-geo-seo-v1/templates/remediation-roadmap.md +150 -0
  34. package/assets/worker-kits/growthub-geo-seo-v1/templates/schema-validation.md +177 -0
  35. package/assets/worker-kits/growthub-geo-seo-v1/templates/technical-foundations.md +108 -0
  36. package/assets/worker-kits/growthub-geo-seo-v1/validation-checklist.md +139 -0
  37. package/assets/worker-kits/growthub-geo-seo-v1/workers/geo-seo-operator/CLAUDE.md +320 -0
  38. package/package.json +1 -1
@@ -0,0 +1,12 @@
1
+ # Growthub GEO SEO Studio — Environment Config
2
+ # Copy this file to .env and fill in your values.
3
+ # Never commit .env to version control.
4
+
5
+ # Path to your local clone of the geo-seo-claude fork
6
+ # Default is ~/geo-seo-claude — only set this if your fork is elsewhere
7
+ # GEO_SEO_FORK_PATH=/path/to/your/geo-seo-claude
8
+
9
+ # Anthropic API key — required for agent-enhanced analysis (Steps 5-9)
10
+ # Core Python audit commands work without this key
11
+ # Get one at https://console.anthropic.com
12
+ ANTHROPIC_API_KEY=your_anthropic_key_here
@@ -0,0 +1,138 @@
1
+ # Growthub GEO SEO Studio — Quickstart
2
+
3
+ **Kit:** `growthub-geo-seo-v1`
4
+ **Worker:** `geo-seo-operator`
5
+ **Tool:** [geo-seo-claude](https://github.com/zubair-trabzada/geo-seo-claude)
6
+
7
+ ---
8
+
9
+ ## What This Kit Does
10
+
11
+ The Growthub GEO SEO Studio is a self-contained AI agent environment that audits websites for AI search visibility, citability, and traditional SEO health. It wraps the open-source `geo-seo-claude` tool to produce:
12
+
13
+ - GEO Scores (0–100 composite score across 6 components)
14
+ - Citability analyses (5-metric algorithm measuring AI quotability)
15
+ - AI crawler permission reports (14 major crawlers)
16
+ - Brand visibility reports (8 platforms)
17
+ - llms.txt implementation plans
18
+ - 4-week remediation roadmaps
19
+ - Client-ready PDF reports
20
+
21
+ ---
22
+
23
+ ## Setup — 6 Steps
24
+
25
+ ### Step 1 — Point Your Working Directory
26
+
27
+ Export this kit to a local folder and point Claude Code's Working Directory at the kit root. All paths in the kit are relative to the kit root.
28
+
29
+ ### Step 2 — Copy the Environment File
30
+
31
+ ```bash
32
+ cp .env.example .env
33
+ ```
34
+
35
+ No API keys are required for core analysis. Python and Playwright handle all data collection locally. If you want agent-enhanced analysis, add your `ANTHROPIC_API_KEY` to `.env`.
36
+
37
+ ### Step 3 — Verify the Environment
38
+
39
+ ```bash
40
+ node setup/verify-env.mjs
41
+ ```
42
+
43
+ This checks:
44
+ - Whether `geo-seo-claude` is cloned at `GEO_SEO_FORK_PATH` (default: `~/geo-seo-claude`)
45
+ - Whether key Python scripts exist in the fork
46
+ - Whether `ANTHROPIC_API_KEY` is valid format (if set)
47
+ - No network calls are made during verification
48
+
49
+ ### Step 4 — Check Dependencies
50
+
51
+ ```bash
52
+ bash setup/check-deps.sh
53
+ ```
54
+
55
+ Verifies that `python3`, `pip`, `playwright`, `git`, and `node` are available. Checks Python version (3.8+ required). Checks Playwright chromium browser is installed.
56
+
57
+ ### Step 5 — Clone and Install the Fork (Local-Fork Mode Only)
58
+
59
+ ```bash
60
+ bash setup/clone-fork.sh
61
+ ```
62
+
63
+ This clones `geo-seo-claude` to `~/geo-seo-claude` (or `GEO_SEO_FORK_PATH` if set), runs `pip install -r requirements.txt`, and installs Playwright chromium.
64
+
65
+ Skip this step if you are using **agent-only mode** — the operator can perform analysis without the local fork.
66
+
67
+ ### Step 6 — Start a Session
68
+
69
+ Open Claude Code, set the Working Directory to this kit root, and start your session. The operator will guide you through the 10-step workflow.
70
+
71
+ ---
72
+
73
+ ## Execution Modes
74
+
75
+ | Mode | Requirements | Use When |
76
+ |---|---|---|
77
+ | `local-fork` | Python 3.8+, Playwright, geo-seo-claude cloned | You want the full tool stack — Python scripts, PDF generation, real crawl data |
78
+ | `agent-only` | Nothing — Claude handles everything | You need a quick analysis and don't have the fork installed |
79
+ | `hybrid` | ANTHROPIC_API_KEY + fork | Best of both — agent reasoning with Python data collection |
80
+
81
+ ---
82
+
83
+ ## First Run
84
+
85
+ 1. Tell the operator: **"Run a full GEO audit on [your domain]"**
86
+ 2. The operator will ask 3 clarifying questions (target URL, scope, delivery format)
87
+ 3. The operator runs the 10-step workflow and produces all audit artifacts
88
+ 4. Output is saved to `output/<client-slug>/<project-slug>/`
89
+
90
+ ---
91
+
92
+ ## New Client Setup
93
+
94
+ See `brands/NEW-CLIENT.md` for instructions on adding a new client brand kit.
95
+
96
+ Quick version:
97
+ ```bash
98
+ cp brands/_template/brand-kit.md brands/<client-slug>/brand-kit.md
99
+ # Then fill in the fields in the new file
100
+ ```
101
+
102
+ ---
103
+
104
+ ## Available Commands
105
+
106
+ The geo-seo-claude tool provides 14 commands. Tell the operator which you need:
107
+
108
+ | Command | What It Does |
109
+ |---|---|
110
+ | `/geo audit` | Full GEO + SEO audit — all components |
111
+ | `/geo citability` | Citability score only |
112
+ | `/geo crawlers` | AI crawler permission check |
113
+ | `/geo brands` | Brand mention and authority scan |
114
+ | `/geo report` | Structured Markdown report |
115
+ | `/geo report-pdf` | Branded PDF report |
116
+ | `/geo content` | E-E-A-T and content quality |
117
+ | `/geo schema` | Structured data validation |
118
+ | `/geo technical` | Server headers and technical health |
119
+ | `/geo llmstxt` | Generate llms.txt plan |
120
+ | `/geo quick` | 60-second AI visibility snapshot |
121
+ | `/geo proposal` | Client proposal with pricing |
122
+ | `/geo prospect` | Prospect qualification scan |
123
+ | `/geo compare` | Side-by-side URL comparison |
124
+
125
+ ---
126
+
127
+ ## Key Files
128
+
129
+ | File | Purpose |
130
+ |---|---|
131
+ | `workers/geo-seo-operator/CLAUDE.md` | Agent operating instructions (start here) |
132
+ | `skills.md` | Full methodology — read at every session |
133
+ | `brands/_template/brand-kit.md` | Blank brand kit template |
134
+ | `brands/growthub/brand-kit.md` | Growthub reference example |
135
+ | `output/README.md` | Output directory structure and naming |
136
+ | `docs/geo-seo-fork-integration.md` | How this kit integrates with geo-seo-claude |
137
+ | `docs/scoring-methodology.md` | GEO Score formula and citability algorithm |
138
+ | `validation-checklist.md` | Pre-session checklist |
@@ -0,0 +1,104 @@
1
+ # New Client Brand Kit Setup
2
+
3
+ Follow these steps to add a new client to the GEO SEO Studio.
4
+
5
+ ---
6
+
7
+ ## Step 1 — Copy the Template
8
+
9
+ ```bash
10
+ # Replace <client-slug> with the client's URL-safe slug (lowercase, hyphens only)
11
+ cp brands/_template/brand-kit.md brands/<client-slug>/brand-kit.md
12
+ ```
13
+
14
+ Examples:
15
+ ```bash
16
+ cp brands/_template/brand-kit.md brands/urban-cycle/brand-kit.md
17
+ cp brands/_template/brand-kit.md brands/acme-saas/brand-kit.md
18
+ cp brands/_template/brand-kit.md brands/coastal-dental/brand-kit.md
19
+ ```
20
+
21
+ ---
22
+
23
+ ## Step 2 — Fill In Required Fields
24
+
25
+ Open `brands/<client-slug>/brand-kit.md` and fill in all fields. The required fields are:
26
+
27
+ | Field | Location | Why It Matters |
28
+ |---|---|---|
29
+ | `client_name` | IDENTITY | Used in all output file names and reports |
30
+ | `slug` | IDENTITY | Must match the directory name — used in output paths |
31
+ | `industry` | IDENTITY | Context for tone calibration and benchmark comparison |
32
+ | `primary_service` | IDENTITY | What GEO/SEO work is being done |
33
+ | `date_onboarded` | IDENTITY | Tracks when the engagement started |
34
+ | `account_owner` | IDENTITY | Who is responsible for this account |
35
+ | `target_persona.pain_point` | AUDIENCE | Drives messaging tone in proposals and reports |
36
+ | `geographic_target` | AUDIENCE | Informs platform and language scope |
37
+ | `core_message` | MESSAGING | Used in client proposals |
38
+ | `tone` | MESSAGING | Calibrates how the operator writes client-facing content |
39
+ | `target_url` | AUDIT SCOPE | The domain to audit |
40
+ | `audit_type` | AUDIT SCOPE | quick / full / report / specific-command |
41
+ | `delivery_format` | AUDIT SCOPE | markdown / pdf / both |
42
+ | `prospect_stage` | AGENCY CONTEXT | discovery / proposal-sent / active / etc. |
43
+
44
+ Optional but recommended:
45
+ - `competitor_urls` — enables `/geo compare` command
46
+ - `monthly_retainer_range` — appears in proposals
47
+ - `crm_notes` — any notes about the account
48
+
49
+ ---
50
+
51
+ ## Step 3 — Tell the Agent to Use It
52
+
53
+ At the start of your session, tell the GEO SEO Operator:
54
+
55
+ > "Use the brand kit at brands/<client-slug>/brand-kit.md for this session."
56
+
57
+ Or the operator will automatically look for `brands/<client-slug>/brand-kit.md` based on the client name you provide.
58
+
59
+ ---
60
+
61
+ ## Step 4 — Update the Deliverables Log
62
+
63
+ After each audit package is delivered, append a line to the brand kit's DELIVERABLES LOG:
64
+
65
+ ```
66
+ - YYYY-MM-DD | GEO SEO Audit Package v<N> — <Project Name> | output/<client-slug>/<project-slug>/
67
+ ```
68
+
69
+ The operator will do this automatically at Step 10 of the workflow.
70
+
71
+ ---
72
+
73
+ ## Multiple Clients
74
+
75
+ Each client gets its own subdirectory under `brands/`:
76
+
77
+ ```
78
+ brands/
79
+ _template/
80
+ brand-kit.md ← blank template — never fill this in
81
+ growthub/
82
+ brand-kit.md ← Growthub internal reference example
83
+ urban-cycle/
84
+ brand-kit.md ← client brand kit
85
+ acme-saas/
86
+ brand-kit.md ← client brand kit
87
+ NEW-CLIENT.md ← this file
88
+ ```
89
+
90
+ Do not modify `brands/_template/brand-kit.md` — it is the frozen template. Always copy it before filling in client details.
91
+
92
+ ---
93
+
94
+ ## Brand Kit Field Reference
95
+
96
+ | Section | Fields |
97
+ |---|---|
98
+ | IDENTITY | client_name, slug, industry, primary_service, campaign_name, date_onboarded, account_owner |
99
+ | AUDIENCE | target_persona (role, company_type, pain_point, intent), geographic_target, do_not_attract |
100
+ | MESSAGING | core_message, tone, approved_phrases, messaging_guardrails, cta_text |
101
+ | BRAND DESIGN | colors (primary, secondary, accent, dark, white), fonts, logo_file, logo_on_dark |
102
+ | AUDIT SCOPE | target_url, competitor_urls, audit_type, delivery_format |
103
+ | AGENCY CONTEXT | monthly_retainer_range, prospect_stage, crm_notes |
104
+ | DELIVERABLES LOG | Running log of all delivered audit packages |
@@ -0,0 +1,116 @@
1
+ # Brand Kit — [CLIENT NAME]
2
+
3
+ > Copy to `brands/<client-slug>/brand-kit.md` and fill in all fields before producing outputs.
4
+ > The GEO SEO Operator reads this file at Step 1 of every session.
5
+
6
+ ---
7
+
8
+ ## IDENTITY
9
+
10
+ ```yaml
11
+ client_name: "" # Full legal or trading name
12
+ slug: "" # URL-safe slug, lowercase, hyphens only (e.g., "urban-cycle")
13
+ industry: "" # Industry category (e.g., "e-commerce — electric bikes")
14
+ primary_service: "" # What GEO/SEO work is being done (e.g., "GEO + SEO audit and AI search visibility remediation")
15
+ campaign_name: "" # This engagement's name (e.g., "Q2 2026 AI Search Launch Audit")
16
+ date_onboarded: "" # YYYY-MM-DD
17
+ account_owner: "" # Growthub team member responsible for this account
18
+ ```
19
+
20
+ ---
21
+
22
+ ## AUDIENCE
23
+
24
+ ```yaml
25
+ target_persona:
26
+ role: "" # Job title or role of the ideal website visitor / buyer
27
+ company_type: "" # e.g., "DTC e-commerce brand", "B2B SaaS", "local service business"
28
+ pain_point: "" # What they are struggling with (e.g., "losing organic traffic to AI search answers")
29
+ intent: "" # What they are trying to accomplish (e.g., "rank in AI-generated answers, not just Google blue links")
30
+
31
+ geographic_target: "" # e.g., "US, Canada, UK" or "Local — Chicago metro"
32
+
33
+ do_not_attract: # Who we are NOT trying to reach with this content
34
+ - ""
35
+ - ""
36
+ ```
37
+
38
+ ---
39
+
40
+ ## MESSAGING
41
+
42
+ ```yaml
43
+ core_message: "" # One sentence: what does this brand want to be known for in AI search?
44
+
45
+ tone: # 3–5 adjectives describing the brand voice
46
+ - ""
47
+ - ""
48
+ - ""
49
+
50
+ approved_phrases: # Phrases that are on-brand and should appear in content
51
+ - ""
52
+ - ""
53
+ - ""
54
+
55
+ messaging_guardrails: # What NOT to say — claims to avoid, topics to sidestep
56
+ - ""
57
+ - ""
58
+
59
+ cta_text: "" # Primary call-to-action (e.g., "Start your free GEO audit")
60
+ ```
61
+
62
+ ---
63
+
64
+ ## BRAND DESIGN
65
+
66
+ ```yaml
67
+ colors:
68
+ primary: "" # Hex code (e.g., "#1A1A2E")
69
+ secondary: "" # Hex code
70
+ accent: "" # Hex code
71
+ dark: "" # Hex code — for dark backgrounds
72
+ white: "" # Hex code — for light backgrounds (usually #FFFFFF)
73
+
74
+ fonts:
75
+ heading: "" # Font name (e.g., "Inter Bold")
76
+ body: "" # Font name (e.g., "Inter Regular")
77
+
78
+ logo_file: "" # Path to logo file (e.g., "brands/<slug>/assets/logo.png")
79
+ logo_on_dark: "" # Path to reversed logo for dark backgrounds
80
+ ```
81
+
82
+ ---
83
+
84
+ ## AUDIT SCOPE
85
+
86
+ ```yaml
87
+ target_url: "" # Primary URL to audit (e.g., "https://domain.com")
88
+
89
+ competitor_urls: # Competitor domains for comparison — fill per engagement
90
+ - ""
91
+ - ""
92
+ - ""
93
+
94
+ audit_type: "" # quick | full | report | specific-command
95
+
96
+ delivery_format: "" # markdown | pdf | both
97
+ ```
98
+
99
+ ---
100
+
101
+ ## AGENCY CONTEXT
102
+
103
+ ```yaml
104
+ monthly_retainer_range: "" # e.g., "$2,500–$4,000/month" or "N/A — project only"
105
+ prospect_stage: "" # discovery | proposal-sent | active | paused | churned | internal
106
+ crm_notes: "" # Free text — any notes about the account, deal status, key contacts
107
+ ```
108
+
109
+ ---
110
+
111
+ ## DELIVERABLES LOG
112
+
113
+ > Append a line here each time an audit package is delivered.
114
+ > Format: `- YYYY-MM-DD | GEO SEO Audit Package v<N> — <Project Name> | output/<client-slug>/<project-slug>/`
115
+
116
+ <!-- No deliverables yet. First entry goes here. -->
@@ -0,0 +1,117 @@
1
+ # Brand Kit — Growthub
2
+
3
+ > Internal reference brand kit. Used as the example for all GEO SEO Studio demos and reference audits.
4
+
5
+ ---
6
+
7
+ ## IDENTITY
8
+
9
+ ```yaml
10
+ client_name: "Growthub"
11
+ slug: "growthub"
12
+ industry: "AI-enabled growth infrastructure and creative operations"
13
+ primary_service: "GEO + SEO audit and remediation for AI search visibility"
14
+ campaign_name: "Studio Launch Reference Audit"
15
+ date_onboarded: "2026-04-14"
16
+ account_owner: "Antonio"
17
+ ```
18
+
19
+ ---
20
+
21
+ ## AUDIENCE
22
+
23
+ ```yaml
24
+ target_persona:
25
+ role: "Growth lead, Head of Marketing, or Founder at a digital-native brand or agency"
26
+ company_type: "DTC e-commerce, B2B SaaS, or marketing agency — 10–200 employees"
27
+ pain_point: "Organic traffic is declining as AI search answers replace blue-link clicks. They have no strategy for AI search visibility."
28
+ intent: "Understand where they stand in AI search, fix the gaps, and capture AI-referred traffic before competitors do."
29
+
30
+ geographic_target: "US, Canada, UK, Australia — English-language markets"
31
+
32
+ do_not_attract:
33
+ - "Solo freelancers with no marketing budget"
34
+ - "Enterprise companies requiring procurement cycles >90 days"
35
+ - "Clients seeking black-hat SEO tactics"
36
+ ```
37
+
38
+ ---
39
+
40
+ ## MESSAGING
41
+
42
+ ```yaml
43
+ core_message: "Growthub helps growth-focused brands become citable, visible, and recommended by AI search systems — not just Google."
44
+
45
+ tone:
46
+ - "Direct"
47
+ - "Technical"
48
+ - "Confident"
49
+ - "Data-grounded"
50
+ - "No-fluff"
51
+
52
+ approved_phrases:
53
+ - "AI search visibility"
54
+ - "GEO Score"
55
+ - "citability"
56
+ - "AI-referred traffic"
57
+ - "worker kit"
58
+ - "remediation roadmap"
59
+ - "crawlable, citable, and optimized"
60
+
61
+ messaging_guardrails:
62
+ - "Do not promise specific traffic or ranking outcomes — frame as projections based on audit data"
63
+ - "Do not call it 'SEO' alone — always pair with 'GEO' to signal AI search differentiation"
64
+ - "Do not claim to game AI systems — frame work as making content genuinely better for AI citation"
65
+
66
+ cta_text: "Get your free GEO Score"
67
+ ```
68
+
69
+ ---
70
+
71
+ ## BRAND DESIGN
72
+
73
+ ```yaml
74
+ colors:
75
+ primary: "#1A1A2E" # Deep navy — primary brand color
76
+ secondary: "#16213E" # Darker navy — backgrounds
77
+ accent: "#E94560" # Red-coral — CTAs, highlights
78
+ dark: "#0F3460" # Dark blue — section backgrounds
79
+ white: "#EAEAEA" # Off-white — body text on dark
80
+
81
+ fonts:
82
+ heading: "Inter Bold"
83
+ body: "Inter Regular"
84
+
85
+ logo_file: "brands/growthub/assets/logo.png"
86
+ logo_on_dark: "brands/growthub/assets/logo-white.png"
87
+ ```
88
+
89
+ ---
90
+
91
+ ## AUDIT SCOPE
92
+
93
+ ```yaml
94
+ target_url: "https://thegrowthub.com"
95
+
96
+ competitor_urls:
97
+ - "" # Fill per engagement — no standing competitors for internal reference
98
+
99
+ audit_type: "full"
100
+ delivery_format: "both"
101
+ ```
102
+
103
+ ---
104
+
105
+ ## AGENCY CONTEXT
106
+
107
+ ```yaml
108
+ monthly_retainer_range: "Internal reference — not sold externally for this domain"
109
+ prospect_stage: "Internal"
110
+ crm_notes: "This is the Growthub reference brand kit. Used for all studio demos, kit examples, and internal reference audits. Do not use as a template for external clients — copy brands/_template/brand-kit.md instead."
111
+ ```
112
+
113
+ ---
114
+
115
+ ## DELIVERABLES LOG
116
+
117
+ - 2026-04-14 | GEO SEO Audit Package v1 — Studio Launch Reference | output/growthub/studio-launch-reference/
@@ -0,0 +1,54 @@
1
+ {
2
+ "schemaVersion": 2,
3
+ "bundle": {
4
+ "id": "growthub-geo-seo-v1",
5
+ "version": "1.0.0",
6
+ "kitId": "growthub-geo-seo-v1",
7
+ "workerId": "geo-seo-operator"
8
+ },
9
+ "briefType": "geo-seo-audit",
10
+ "publicExampleBrandPaths": ["brands/growthub/brand-kit.md"],
11
+ "requiredFrozenAssets": [
12
+ "QUICKSTART.md",
13
+ ".env.example",
14
+ "skills.md",
15
+ "output-standards.md",
16
+ "runtime-assumptions.md",
17
+ "validation-checklist.md",
18
+ "workers/geo-seo-operator/CLAUDE.md",
19
+ "brands/_template/brand-kit.md",
20
+ "brands/growthub/brand-kit.md",
21
+ "brands/NEW-CLIENT.md",
22
+ "setup/clone-fork.sh",
23
+ "setup/verify-env.mjs",
24
+ "setup/check-deps.sh",
25
+ "output/README.md",
26
+ "templates/geo-audit-brief.md",
27
+ "templates/citability-analysis.md",
28
+ "templates/crawler-access-report.md",
29
+ "templates/brand-visibility-report.md",
30
+ "templates/geo-score-summary.md",
31
+ "templates/content-analysis.md",
32
+ "templates/schema-validation.md",
33
+ "templates/technical-foundations.md",
34
+ "templates/llmstxt-plan.md",
35
+ "templates/remediation-roadmap.md",
36
+ "templates/client-proposal.md",
37
+ "examples/geo-audit-sample.md",
38
+ "examples/citability-sample.md",
39
+ "examples/pdf-report-sample.md",
40
+ "examples/prospect-proposal-sample.md",
41
+ "docs/geo-seo-fork-integration.md",
42
+ "docs/subagent-dispatch.md",
43
+ "docs/scoring-methodology.md",
44
+ "docs/pdf-report-layer.md",
45
+ "growthub-meta/README.md",
46
+ "growthub-meta/kit-standard.md"
47
+ ],
48
+ "optionalPresets": [],
49
+ "export": {
50
+ "folderName": "growthub-agent-worker-kit-geo-seo-v1",
51
+ "zipFileName": "growthub-agent-worker-kit-geo-seo-v1.zip"
52
+ },
53
+ "activationModes": ["export"]
54
+ }