cbrowser 18.63.0 → 18.63.2
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.
- package/package.json +1 -1
- package/docs/ASSESSMENT.md +0 -132
- package/docs/AUTH0-SETUP.md +0 -207
- package/docs/COGNITIVE-OPTIMAL-TRANSPORT-RESEARCH.md +0 -238
- package/docs/DEMO-DEPLOYMENT.md +0 -177
- package/docs/ENTERPRISE-INTEGRATION.md +0 -250
- package/docs/GETTING-STARTED.md +0 -232
- package/docs/INSTALL.md +0 -274
- package/docs/MCP-INTEGRATION.md +0 -301
- package/docs/METHODOLOGY.md +0 -276
- package/docs/PERSONA-QUESTIONNAIRE.md +0 -328
- package/docs/README.md +0 -45
- package/docs/REMOTE-MCP-SERVER.md +0 -569
- package/docs/SECURITY_WHITEPAPER.md +0 -475
- package/docs/STRESS-TEST-v16.14.4.md +0 -241
- package/docs/Tool-Cognitive-Journey-Autonomous.md +0 -270
- package/docs/Tool-Competitive-Benchmark.md +0 -293
- package/docs/Tool-Empathy-Audit.md +0 -331
- package/docs/Tool-Hunt-Bugs.md +0 -305
- package/docs/Tool-Marketing-Campaign.md +0 -298
- package/docs/Tool-Persona-Create.md +0 -274
- package/docs/Tools-Accessibility.md +0 -208
- package/docs/Tools-Browser-Automation.md +0 -311
- package/docs/Tools-Cognitive-Journeys.md +0 -233
- package/docs/Tools-Marketing-Intelligence.md +0 -271
- package/docs/Tools-Overview.md +0 -162
- package/docs/Tools-Persona-System.md +0 -300
- package/docs/Tools-Session-State.md +0 -278
- package/docs/Tools-Testing-Quality.md +0 -257
- package/docs/Tools-Utilities.md +0 -182
- package/docs/Tools-Visual-Performance.md +0 -278
- package/docs/hunt-bugs-coverage.md +0 -103
- package/docs/personas/Persona-ADHD.md +0 -141
- package/docs/personas/Persona-ElderlyUser.md +0 -137
- package/docs/personas/Persona-FirstTimer.md +0 -137
- package/docs/personas/Persona-ImpatientUser.md +0 -138
- package/docs/personas/Persona-Index.md +0 -302
- package/docs/personas/Persona-LowVision.md +0 -139
- package/docs/personas/Persona-MobileUser.md +0 -139
- package/docs/personas/Persona-MotorTremor.md +0 -139
- package/docs/personas/Persona-PowerUser.md +0 -135
- package/docs/personas/Persona-ScreenReaderUser.md +0 -139
- package/docs/research/Bibliography.md +0 -275
- package/docs/research/Research-Methodology.md +0 -244
- package/docs/research/Values-Research.md +0 -432
- package/docs/traits/Trait-AnchoringBias.md +0 -227
- package/docs/traits/Trait-AttributionStyle.md +0 -280
- package/docs/traits/Trait-AuthoritySensitivity.md +0 -141
- package/docs/traits/Trait-ChangeBlindness.md +0 -171
- package/docs/traits/Trait-Comprehension.md +0 -180
- package/docs/traits/Trait-Curiosity.md +0 -189
- package/docs/traits/Trait-EmotionalContagion.md +0 -144
- package/docs/traits/Trait-FOMO.md +0 -150
- package/docs/traits/Trait-Index.md +0 -166
- package/docs/traits/Trait-InformationForaging.md +0 -217
- package/docs/traits/Trait-InterruptRecovery.md +0 -249
- package/docs/traits/Trait-MentalModelRigidity.md +0 -228
- package/docs/traits/Trait-MetacognitivePlanning.md +0 -164
- package/docs/traits/Trait-Patience.md +0 -137
- package/docs/traits/Trait-Persistence.md +0 -165
- package/docs/traits/Trait-ProceduralFluency.md +0 -205
- package/docs/traits/Trait-ReadingTendency.md +0 -216
- package/docs/traits/Trait-Resilience.md +0 -162
- package/docs/traits/Trait-RiskTolerance.md +0 -162
- package/docs/traits/Trait-Satisficing.md +0 -181
- package/docs/traits/Trait-SelfEfficacy.md +0 -199
- package/docs/traits/Trait-SocialProofSensitivity.md +0 -155
- package/docs/traits/Trait-TimeHorizon.md +0 -267
- package/docs/traits/Trait-TransferLearning.md +0 -249
- package/docs/traits/Trait-TrustCalibration.md +0 -227
- package/docs/traits/Trait-WorkingMemory.md +0 -192
package/docs/Tool-Hunt-Bugs.md
DELETED
|
@@ -1,305 +0,0 @@
|
|
|
1
|
-
> **This documentation is no longer maintained here.**
|
|
2
|
-
>
|
|
3
|
-
> For the latest version, please visit: **[Hunt Bugs](https://cbrowser.ai/docs/Tool-Hunt-Bugs)**
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Hunt Bugs
|
|
8
|
-
|
|
9
|
-
**Turn AI loose on your site. See what's broken.**
|
|
10
|
-
|
|
11
|
-
`hunt_bugs` is autonomous exploratory testing. You give it a URL, it crawls your site looking for bugs — broken links, JavaScript errors, accessibility issues, visual glitches, and security problems. No test cases required.
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
## Quick Start
|
|
16
|
-
|
|
17
|
-
```json
|
|
18
|
-
{
|
|
19
|
-
"url": "https://example.com",
|
|
20
|
-
"scope": "all",
|
|
21
|
-
"depth": 4,
|
|
22
|
-
"maxPages": 50
|
|
23
|
-
}
|
|
24
|
-
```
|
|
25
|
-
|
|
26
|
-
**What happens**:
|
|
27
|
-
1. AI starts at your URL and begins exploring
|
|
28
|
-
2. On each page, it checks for functional, visual, accessibility, and security issues
|
|
29
|
-
3. It follows links, fills forms, clicks buttons — looking for things that break
|
|
30
|
-
4. You get a report of everything found, with reproduction steps and screenshots
|
|
31
|
-
|
|
32
|
-
---
|
|
33
|
-
|
|
34
|
-
## Parameters
|
|
35
|
-
|
|
36
|
-
| Parameter | Type | Required | Default | Description |
|
|
37
|
-
|-----------|------|----------|---------|-------------|
|
|
38
|
-
| `url` | string | Yes | — | Starting URL |
|
|
39
|
-
| `scope` | string | No | `all` | Bug types: `all`, `functional`, `visual`, `accessibility`, `security` |
|
|
40
|
-
| `depth` | number | No | 3 | How deep to crawl |
|
|
41
|
-
| `maxPages` | number | No | 20 | Maximum pages to visit |
|
|
42
|
-
| `focus` | string | No | — | Focus area (e.g., "forms", "checkout", "navigation") |
|
|
43
|
-
| `exclude` | array | No | — | URL patterns to skip |
|
|
44
|
-
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
## What It Finds
|
|
48
|
-
|
|
49
|
-
### Functional Bugs
|
|
50
|
-
|
|
51
|
-
| Bug Type | How It's Detected |
|
|
52
|
-
|----------|-------------------|
|
|
53
|
-
| Broken links | Links that return 4xx/5xx errors |
|
|
54
|
-
| Dead ends | Pages with no way to navigate away |
|
|
55
|
-
| Form errors | Submissions that fail silently |
|
|
56
|
-
| JavaScript exceptions | Console errors during interaction |
|
|
57
|
-
| Failed network requests | XHR/fetch that error |
|
|
58
|
-
| Infinite loops | Redirect chains, infinite scrolls |
|
|
59
|
-
| Missing content | Empty states, placeholder text |
|
|
60
|
-
|
|
61
|
-
### Visual Bugs
|
|
62
|
-
|
|
63
|
-
| Bug Type | How It's Detected |
|
|
64
|
-
|----------|-------------------|
|
|
65
|
-
| Overlapping elements | Content that covers other content |
|
|
66
|
-
| Horizontal overflow | Content breaking viewport |
|
|
67
|
-
| Missing images | Broken `src` attributes |
|
|
68
|
-
| Layout breaks | Elements far from expected position |
|
|
69
|
-
| Z-index issues | Content hidden behind other layers |
|
|
70
|
-
| Responsive failures | Elements that break at viewport edges |
|
|
71
|
-
|
|
72
|
-
### Accessibility Bugs
|
|
73
|
-
|
|
74
|
-
| Bug Type | How It's Detected |
|
|
75
|
-
|----------|-------------------|
|
|
76
|
-
| Missing alt text | Images without descriptions |
|
|
77
|
-
| Low contrast | Text that fails WCAG contrast |
|
|
78
|
-
| Keyboard traps | Can't escape a component with keyboard |
|
|
79
|
-
| Missing labels | Form fields without associated labels |
|
|
80
|
-
| Focus issues | Interactive elements without focus styles |
|
|
81
|
-
| ARIA violations | Invalid ARIA attributes |
|
|
82
|
-
|
|
83
|
-
### Security Issues
|
|
84
|
-
|
|
85
|
-
| Bug Type | How It's Detected |
|
|
86
|
-
|----------|-------------------|
|
|
87
|
-
| Exposed credentials | Visible API keys, passwords |
|
|
88
|
-
| Insecure forms | HTTP forms on HTTPS pages |
|
|
89
|
-
| Data in URLs | Sensitive info in query strings |
|
|
90
|
-
| Missing HTTPS | Insecure resource loading |
|
|
91
|
-
| Open redirects | Redirects to external domains |
|
|
92
|
-
| Debug endpoints | Exposed dev/debug routes |
|
|
93
|
-
|
|
94
|
-
---
|
|
95
|
-
|
|
96
|
-
## Output
|
|
97
|
-
|
|
98
|
-
```json
|
|
99
|
-
{
|
|
100
|
-
"url": "https://example.com",
|
|
101
|
-
"pagesVisited": 34,
|
|
102
|
-
"timeElapsed": 187,
|
|
103
|
-
"bugs": [
|
|
104
|
-
{
|
|
105
|
-
"severity": "critical",
|
|
106
|
-
"type": "functional",
|
|
107
|
-
"category": "form-error",
|
|
108
|
-
"url": "https://example.com/checkout",
|
|
109
|
-
"description": "Payment form silently fails when CVV is left empty",
|
|
110
|
-
"reproduction": [
|
|
111
|
-
"Navigate to /checkout",
|
|
112
|
-
"Fill all fields except CVV",
|
|
113
|
-
"Click 'Pay Now'",
|
|
114
|
-
"Form shows loading spinner but never completes"
|
|
115
|
-
],
|
|
116
|
-
"screenshot": "base64...",
|
|
117
|
-
"consoleErrors": [
|
|
118
|
-
"Uncaught TypeError: Cannot read property 'value' of null at payment.js:142"
|
|
119
|
-
]
|
|
120
|
-
},
|
|
121
|
-
{
|
|
122
|
-
"severity": "serious",
|
|
123
|
-
"type": "accessibility",
|
|
124
|
-
"category": "missing-label",
|
|
125
|
-
"url": "https://example.com/contact",
|
|
126
|
-
"description": "Phone number field has no associated label",
|
|
127
|
-
"wcag": "1.3.1",
|
|
128
|
-
"element": "<input type='tel' name='phone' placeholder='Phone'>",
|
|
129
|
-
"remediation": "Add <label for='phone'>Phone Number</label>"
|
|
130
|
-
},
|
|
131
|
-
{
|
|
132
|
-
"severity": "moderate",
|
|
133
|
-
"type": "visual",
|
|
134
|
-
"category": "overflow",
|
|
135
|
-
"url": "https://example.com/pricing",
|
|
136
|
-
"description": "Pricing table overflows viewport on mobile",
|
|
137
|
-
"viewport": "375x667",
|
|
138
|
-
"screenshot": "base64..."
|
|
139
|
-
},
|
|
140
|
-
{
|
|
141
|
-
"severity": "serious",
|
|
142
|
-
"type": "security",
|
|
143
|
-
"category": "exposed-credentials",
|
|
144
|
-
"url": "https://example.com/config",
|
|
145
|
-
"description": "API key visible in page source",
|
|
146
|
-
"evidence": "const API_KEY = 'sk-...'",
|
|
147
|
-
"recommendation": "Move API key to environment variable"
|
|
148
|
-
}
|
|
149
|
-
],
|
|
150
|
-
"summary": {
|
|
151
|
-
"critical": 1,
|
|
152
|
-
"serious": 4,
|
|
153
|
-
"moderate": 7,
|
|
154
|
-
"minor": 12,
|
|
155
|
-
"byType": {
|
|
156
|
-
"functional": 6,
|
|
157
|
-
"visual": 8,
|
|
158
|
-
"accessibility": 5,
|
|
159
|
-
"security": 5
|
|
160
|
-
}
|
|
161
|
-
}
|
|
162
|
-
}
|
|
163
|
-
```
|
|
164
|
-
|
|
165
|
-
---
|
|
166
|
-
|
|
167
|
-
## Use Cases
|
|
168
|
-
|
|
169
|
-
### 1. Pre-Release Smoke Test
|
|
170
|
-
|
|
171
|
-
Before deploying, run a quick bug hunt:
|
|
172
|
-
|
|
173
|
-
```json
|
|
174
|
-
{
|
|
175
|
-
"url": "https://staging.example.com",
|
|
176
|
-
"scope": "functional",
|
|
177
|
-
"depth": 3,
|
|
178
|
-
"maxPages": 30
|
|
179
|
-
}
|
|
180
|
-
```
|
|
181
|
-
|
|
182
|
-
Catches obvious breaks before they reach production.
|
|
183
|
-
|
|
184
|
-
---
|
|
185
|
-
|
|
186
|
-
### 2. Security Reconnaissance
|
|
187
|
-
|
|
188
|
-
Find exposed secrets and vulnerabilities:
|
|
189
|
-
|
|
190
|
-
```json
|
|
191
|
-
{
|
|
192
|
-
"url": "https://example.com",
|
|
193
|
-
"scope": "security",
|
|
194
|
-
"depth": 5,
|
|
195
|
-
"maxPages": 100
|
|
196
|
-
}
|
|
197
|
-
```
|
|
198
|
-
|
|
199
|
-
---
|
|
200
|
-
|
|
201
|
-
### 3. Accessibility Sweep
|
|
202
|
-
|
|
203
|
-
Find accessibility issues across the entire site:
|
|
204
|
-
|
|
205
|
-
```json
|
|
206
|
-
{
|
|
207
|
-
"url": "https://example.com",
|
|
208
|
-
"scope": "accessibility",
|
|
209
|
-
"depth": 5
|
|
210
|
-
}
|
|
211
|
-
```
|
|
212
|
-
|
|
213
|
-
For deeper analysis of specific issues, follow up with [empathy_audit](/docs/Tool-Empathy-Audit/).
|
|
214
|
-
|
|
215
|
-
---
|
|
216
|
-
|
|
217
|
-
### 4. Focused Testing
|
|
218
|
-
|
|
219
|
-
Hunt bugs only in a specific area:
|
|
220
|
-
|
|
221
|
-
```json
|
|
222
|
-
{
|
|
223
|
-
"url": "https://example.com/checkout",
|
|
224
|
-
"focus": "checkout",
|
|
225
|
-
"exclude": ["/blog/*", "/docs/*"]
|
|
226
|
-
}
|
|
227
|
-
```
|
|
228
|
-
|
|
229
|
-
---
|
|
230
|
-
|
|
231
|
-
## How It Explores
|
|
232
|
-
|
|
233
|
-
1. **Starts at your URL** and analyzes the page
|
|
234
|
-
2. **Identifies interactive elements** — links, buttons, forms
|
|
235
|
-
3. **Executes interactions** — clicks, fills, submits
|
|
236
|
-
4. **Records everything** — console logs, network, screenshots
|
|
237
|
-
5. **Follows promising paths** — prioritizes unexplored areas
|
|
238
|
-
6. **Avoids traps** — detects infinite loops, skips logout/delete
|
|
239
|
-
7. **Moves to next page** and repeats
|
|
240
|
-
|
|
241
|
-
The AI uses constitutional safety rules to avoid destructive actions — it won't click "Delete Account" or "Cancel Subscription".
|
|
242
|
-
|
|
243
|
-
---
|
|
244
|
-
|
|
245
|
-
## CI/CD Integration
|
|
246
|
-
|
|
247
|
-
```bash
|
|
248
|
-
# Run in CI, fail if critical bugs found
|
|
249
|
-
npx cbrowser hunt-bugs https://staging.example.com \
|
|
250
|
-
--scope all \
|
|
251
|
-
--depth 3 \
|
|
252
|
-
--fail-on critical \
|
|
253
|
-
--output bugs.json
|
|
254
|
-
|
|
255
|
-
# Generate HTML report
|
|
256
|
-
npx cbrowser hunt-bugs https://example.com \
|
|
257
|
-
--output report.html
|
|
258
|
-
```
|
|
259
|
-
|
|
260
|
-
---
|
|
261
|
-
|
|
262
|
-
## Tips
|
|
263
|
-
|
|
264
|
-
### Start Shallow, Go Deep
|
|
265
|
-
|
|
266
|
-
```json
|
|
267
|
-
// First run: quick sweep
|
|
268
|
-
{ "depth": 2, "maxPages": 20 }
|
|
269
|
-
|
|
270
|
-
// Second run: deep dive on problem areas
|
|
271
|
-
{ "url": "https://example.com/checkout", "depth": 5 }
|
|
272
|
-
```
|
|
273
|
-
|
|
274
|
-
### Exclude Known Issues
|
|
275
|
-
|
|
276
|
-
```json
|
|
277
|
-
{
|
|
278
|
-
"exclude": [
|
|
279
|
-
"/legacy/*", // Old pages being deprecated
|
|
280
|
-
"/admin/*" // Requires auth
|
|
281
|
-
]
|
|
282
|
-
}
|
|
283
|
-
```
|
|
284
|
-
|
|
285
|
-
### Focus on What Matters
|
|
286
|
-
|
|
287
|
-
```json
|
|
288
|
-
// Only care about checkout working?
|
|
289
|
-
{ "focus": "checkout", "scope": "functional" }
|
|
290
|
-
|
|
291
|
-
// Preparing for accessibility audit?
|
|
292
|
-
{ "scope": "accessibility", "depth": 10 }
|
|
293
|
-
```
|
|
294
|
-
|
|
295
|
-
---
|
|
296
|
-
|
|
297
|
-
## Related Tools
|
|
298
|
-
|
|
299
|
-
- [`nl_test_file`](/docs/Tools-Testing-Quality/) — Run specific test scenarios
|
|
300
|
-
- [`empathy_audit`](/docs/Tool-Empathy-Audit/) — Deep accessibility testing
|
|
301
|
-
- [`competitive_benchmark`](/docs/Tool-Competitive-Benchmark/) — Compare against competitors
|
|
302
|
-
|
|
303
|
-
---
|
|
304
|
-
|
|
305
|
-
*Last updated: v17.6.0*
|
|
@@ -1,298 +0,0 @@
|
|
|
1
|
-
> **This documentation is no longer maintained here.**
|
|
2
|
-
>
|
|
3
|
-
> For the latest version, please visit: **[Marketing Campaigns](https://cbrowser.ai/docs/Tool-Marketing-Campaign)**
|
|
4
|
-
|
|
5
|
-
---
|
|
6
|
-
|
|
7
|
-
# Marketing Campaigns
|
|
8
|
-
|
|
9
|
-
**Test which messages work for which audiences — with scientific rigor.**
|
|
10
|
-
|
|
11
|
-
Marketing campaigns in CBrowser let you run structured A/B tests using cognitive personas. Instead of testing at the population level (where results average out), test at the *segment* level — find out that scarcity messaging works for impulse-shoppers but backfires with enterprise-buyers.
|
|
12
|
-
|
|
13
|
-
---
|
|
14
|
-
|
|
15
|
-
## Campaign Lifecycle
|
|
16
|
-
|
|
17
|
-
### 1. Create Campaign
|
|
18
|
-
|
|
19
|
-
Define variants and personas to test.
|
|
20
|
-
|
|
21
|
-
```json
|
|
22
|
-
{
|
|
23
|
-
"tool": "marketing_campaign_create",
|
|
24
|
-
"params": {
|
|
25
|
-
"name": "Pricing Page Optimization Q1 2026",
|
|
26
|
-
"variants": [
|
|
27
|
-
{ "name": "Control", "url": "https://example.com/pricing" },
|
|
28
|
-
{ "name": "Social Proof", "url": "https://example.com/pricing-v2" },
|
|
29
|
-
{ "name": "Scarcity", "url": "https://example.com/pricing-v3" }
|
|
30
|
-
],
|
|
31
|
-
"personas": [
|
|
32
|
-
"enterprise-buyer",
|
|
33
|
-
"startup-founder",
|
|
34
|
-
"impulse-shopper",
|
|
35
|
-
"price-researcher"
|
|
36
|
-
],
|
|
37
|
-
"goal": "Click 'Start Free Trial'",
|
|
38
|
-
"metrics": ["time_to_goal", "friction_count", "abandonment_rate"]
|
|
39
|
-
}
|
|
40
|
-
}
|
|
41
|
-
```
|
|
42
|
-
|
|
43
|
-
**Returns**: Campaign ID and test matrix (3 variants × 4 personas = 12 test cells)
|
|
44
|
-
|
|
45
|
-
---
|
|
46
|
-
|
|
47
|
-
### 2. Run Journeys
|
|
48
|
-
|
|
49
|
-
Run cognitive journeys for each cell in the matrix.
|
|
50
|
-
|
|
51
|
-
**With Enterprise** (automatic):
|
|
52
|
-
```json
|
|
53
|
-
{
|
|
54
|
-
"tool": "marketing_campaign_run",
|
|
55
|
-
"params": {
|
|
56
|
-
"campaignId": "camp_abc123"
|
|
57
|
-
}
|
|
58
|
-
}
|
|
59
|
-
```
|
|
60
|
-
|
|
61
|
-
**With Demo** (manual orchestration):
|
|
62
|
-
```json
|
|
63
|
-
// For each variant × persona combination:
|
|
64
|
-
{
|
|
65
|
-
"tool": "cognitive_journey_init",
|
|
66
|
-
"params": {
|
|
67
|
-
"persona": "enterprise-buyer",
|
|
68
|
-
"startUrl": "https://example.com/pricing",
|
|
69
|
-
"goal": "Click 'Start Free Trial'"
|
|
70
|
-
}
|
|
71
|
-
}
|
|
72
|
-
// ... orchestrate journey ...
|
|
73
|
-
|
|
74
|
-
// Report result back
|
|
75
|
-
{
|
|
76
|
-
"tool": "marketing_campaign_report_result",
|
|
77
|
-
"params": {
|
|
78
|
-
"campaignId": "camp_abc123",
|
|
79
|
-
"variantIndex": 0,
|
|
80
|
-
"persona": "enterprise-buyer",
|
|
81
|
-
"success": false,
|
|
82
|
-
"abandonmentReason": "No security certification visible",
|
|
83
|
-
"friction": ["Couldn't find SOC 2 badge", "Pricing unclear for enterprise"],
|
|
84
|
-
"timeToGoal": null
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
---
|
|
90
|
-
|
|
91
|
-
### 3. Analyze Results 🔒 Enterprise
|
|
92
|
-
|
|
93
|
-
Generate insights from campaign data.
|
|
94
|
-
|
|
95
|
-
```json
|
|
96
|
-
// Influence effectiveness matrix
|
|
97
|
-
{
|
|
98
|
-
"tool": "marketing_influence_matrix",
|
|
99
|
-
"params": { "campaignId": "camp_abc123" }
|
|
100
|
-
}
|
|
101
|
-
|
|
102
|
-
// Psychological lever analysis
|
|
103
|
-
{
|
|
104
|
-
"tool": "marketing_lever_analysis",
|
|
105
|
-
"params": { "campaignId": "camp_abc123" }
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
// Funnel comparison
|
|
109
|
-
{
|
|
110
|
-
"tool": "marketing_funnel_analyze",
|
|
111
|
-
"params": { "campaignId": "camp_abc123" }
|
|
112
|
-
}
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
---
|
|
116
|
-
|
|
117
|
-
## Campaign Results
|
|
118
|
-
|
|
119
|
-
### Success Matrix
|
|
120
|
-
|
|
121
|
-
| | Enterprise Buyer | Startup Founder | Impulse Shopper | Price Researcher |
|
|
122
|
-
|---|:---:|:---:|:---:|:---:|
|
|
123
|
-
| **Control** | ❌ | ✅ | ❌ | ❌ |
|
|
124
|
-
| **Social Proof** | ✅ | ✅ | ✅ | ❌ |
|
|
125
|
-
| **Scarcity** | ❌ | ✅ | ✅ | ❌ |
|
|
126
|
-
|
|
127
|
-
### Influence Matrix 🔒 Enterprise
|
|
128
|
-
|
|
129
|
-
Shows which influence patterns work for which personas:
|
|
130
|
-
|
|
131
|
-
```json
|
|
132
|
-
{
|
|
133
|
-
"matrix": {
|
|
134
|
-
"enterprise-buyer": {
|
|
135
|
-
"social_proof": { "effectiveness": 0.85, "evidence": "Converted after seeing Fortune 500 logos" },
|
|
136
|
-
"scarcity": { "effectiveness": 0.10, "evidence": "Dismissed 'Limited time' as marketing" },
|
|
137
|
-
"authority": { "effectiveness": 0.90, "evidence": "Sought SOC 2 badge before proceeding" }
|
|
138
|
-
},
|
|
139
|
-
"impulse-shopper": {
|
|
140
|
-
"social_proof": { "effectiveness": 0.75, "evidence": "Clicked after seeing 'Trusted by 10,000+'" },
|
|
141
|
-
"scarcity": { "effectiveness": 0.95, "evidence": "Converted immediately on countdown" },
|
|
142
|
-
"authority": { "effectiveness": 0.30, "evidence": "Didn't notice security badges" }
|
|
143
|
-
}
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
```
|
|
147
|
-
|
|
148
|
-
### Lever Analysis 🔒 Enterprise
|
|
149
|
-
|
|
150
|
-
Deep dive into *why* variants worked:
|
|
151
|
-
|
|
152
|
-
```json
|
|
153
|
-
{
|
|
154
|
-
"variant": "Social Proof",
|
|
155
|
-
"successRate": 0.75,
|
|
156
|
-
"leverBreakdown": {
|
|
157
|
-
"customer_logos": {
|
|
158
|
-
"impact": "high",
|
|
159
|
-
"evidence": "3 of 4 personas clicked CTAs near logos"
|
|
160
|
-
},
|
|
161
|
-
"testimonial_quotes": {
|
|
162
|
-
"impact": "medium",
|
|
163
|
-
"evidence": "Enterprise buyer read full testimonial before converting"
|
|
164
|
-
},
|
|
165
|
-
"user_count": {
|
|
166
|
-
"impact": "low",
|
|
167
|
-
"evidence": "Price researcher dismissed as vanity metric"
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
```
|
|
172
|
-
|
|
173
|
-
### Funnel Analysis 🔒 Enterprise
|
|
174
|
-
|
|
175
|
-
Where in the journey did each persona drop off?
|
|
176
|
-
|
|
177
|
-
```json
|
|
178
|
-
{
|
|
179
|
-
"variant": "Scarcity",
|
|
180
|
-
"persona": "enterprise-buyer",
|
|
181
|
-
"funnel": [
|
|
182
|
-
{ "step": "Land on page", "reached": true, "time": 0 },
|
|
183
|
-
{ "step": "Scroll to pricing", "reached": true, "time": 12 },
|
|
184
|
-
{ "step": "See countdown timer", "reached": true, "time": 15 },
|
|
185
|
-
{ "step": "Click 'Start Trial'", "reached": false, "time": null }
|
|
186
|
-
],
|
|
187
|
-
"dropOffAnalysis": {
|
|
188
|
-
"step": "See countdown timer",
|
|
189
|
-
"innerMonologue": "This seems like a pressure tactic. I need to verify this with my team first.",
|
|
190
|
-
"frictionType": "trust_violation",
|
|
191
|
-
"recommendation": "Remove artificial urgency for enterprise audience"
|
|
192
|
-
}
|
|
193
|
-
}
|
|
194
|
-
```
|
|
195
|
-
|
|
196
|
-
---
|
|
197
|
-
|
|
198
|
-
## Designing Effective Campaigns
|
|
199
|
-
|
|
200
|
-
### Choose Contrasting Variants
|
|
201
|
-
|
|
202
|
-
Test different *strategies*, not minor copy changes:
|
|
203
|
-
|
|
204
|
-
**Good**:
|
|
205
|
-
- Control (baseline)
|
|
206
|
-
- Social proof emphasis (testimonials, logos)
|
|
207
|
-
- Scarcity emphasis (limited offer, countdown)
|
|
208
|
-
- Authority emphasis (certifications, awards)
|
|
209
|
-
|
|
210
|
-
**Bad**:
|
|
211
|
-
- "Start Free Trial" button
|
|
212
|
-
- "Begin Free Trial" button
|
|
213
|
-
- "Get Started Free" button
|
|
214
|
-
|
|
215
|
-
### Select Representative Personas
|
|
216
|
-
|
|
217
|
-
Include personas that matter for your business:
|
|
218
|
-
|
|
219
|
-
| Business Type | Key Personas |
|
|
220
|
-
|---------------|--------------|
|
|
221
|
-
| B2B SaaS | enterprise-buyer, startup-founder, technical-evaluator |
|
|
222
|
-
| E-commerce | impulse-shopper, price-researcher, loyal-customer |
|
|
223
|
-
| Consumer app | first-timer, power-user, mobile-user |
|
|
224
|
-
| Accessibility | motor-tremor, low-vision, cognitive-adhd |
|
|
225
|
-
|
|
226
|
-
### Define Clear Goals
|
|
227
|
-
|
|
228
|
-
Specific, measurable goals:
|
|
229
|
-
|
|
230
|
-
**Good**: "Click 'Start Free Trial' button"
|
|
231
|
-
**Bad**: "Understand the product"
|
|
232
|
-
|
|
233
|
-
---
|
|
234
|
-
|
|
235
|
-
## Demo vs Enterprise
|
|
236
|
-
|
|
237
|
-
| Capability | Demo | Enterprise |
|
|
238
|
-
|------------|:----:|:----------:|
|
|
239
|
-
| Create campaigns | ✅ | ✅ |
|
|
240
|
-
| Report journey results | ✅ | ✅ |
|
|
241
|
-
| List marketing personas | ✅ | ✅ |
|
|
242
|
-
| Run campaigns automatically | ❌ | ✅ |
|
|
243
|
-
| Influence matrix | ❌ | ✅ |
|
|
244
|
-
| Lever analysis | ❌ | ✅ |
|
|
245
|
-
| Funnel analysis | ❌ | ✅ |
|
|
246
|
-
| Competitive comparison | ❌ | ✅ |
|
|
247
|
-
| Audience discovery | ❌ | ✅ |
|
|
248
|
-
|
|
249
|
-
**Demo** gives you the testing framework — create campaigns, run journeys manually with Claude orchestrating, report results.
|
|
250
|
-
|
|
251
|
-
**Enterprise** gives you automation and insights — run all journeys automatically, get influence matrices and lever analysis.
|
|
252
|
-
|
|
253
|
-
---
|
|
254
|
-
|
|
255
|
-
## Example: Full Campaign
|
|
256
|
-
|
|
257
|
-
### Setup
|
|
258
|
-
|
|
259
|
-
```json
|
|
260
|
-
{
|
|
261
|
-
"name": "Homepage CTA Test",
|
|
262
|
-
"variants": [
|
|
263
|
-
{ "name": "Control", "url": "https://example.com" },
|
|
264
|
-
{ "name": "Social Proof", "url": "https://example.com?v=social" },
|
|
265
|
-
{ "name": "Feature Focus", "url": "https://example.com?v=features" }
|
|
266
|
-
],
|
|
267
|
-
"personas": ["first-timer", "enterprise-buyer", "technical-evaluator"],
|
|
268
|
-
"goal": "Click primary CTA"
|
|
269
|
-
}
|
|
270
|
-
```
|
|
271
|
-
|
|
272
|
-
### Results
|
|
273
|
-
|
|
274
|
-
| | First-Timer | Enterprise Buyer | Technical Evaluator |
|
|
275
|
-
|---|:---:|:---:|:---:|
|
|
276
|
-
| Control | ✅ (23s) | ❌ | ❌ |
|
|
277
|
-
| Social Proof | ✅ (18s) | ✅ (45s) | ❌ |
|
|
278
|
-
| Feature Focus | ❌ | ❌ | ✅ (67s) |
|
|
279
|
-
|
|
280
|
-
### Insights
|
|
281
|
-
|
|
282
|
-
- **First-timers** convert fastest on Social Proof (18s vs 23s control)
|
|
283
|
-
- **Enterprise buyers** need social proof (logos, testimonials) — don't convert without it
|
|
284
|
-
- **Technical evaluators** need feature details — social proof feels like marketing fluff
|
|
285
|
-
- **Recommendation**: Show different hero sections by referral source
|
|
286
|
-
|
|
287
|
-
---
|
|
288
|
-
|
|
289
|
-
## Related Documentation
|
|
290
|
-
|
|
291
|
-
- [Marketing Suite](/docs/Marketing-Suite/) — Full marketing capabilities
|
|
292
|
-
- [Marketing Intelligence Tools](/docs/Tools-Marketing-Intelligence/) — All marketing tools
|
|
293
|
-
- [Cognitive Journeys](/docs/Tools-Cognitive-Journeys/) — Journey simulation
|
|
294
|
-
- [Values Framework](/docs/Values-Framework/) — What motivates each persona
|
|
295
|
-
|
|
296
|
-
---
|
|
297
|
-
|
|
298
|
-
*Last updated: v17.6.0*
|