marketing-mindset 1.1.0 → 1.1.1
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/README.md +43 -0
- package/package.json +1 -1
package/README.md
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
# marketing-mindset
|
|
2
|
+
|
|
3
|
+
A marketer's operating mindset, packaged as an installable agent skill plus a CLI.
|
|
4
|
+
Not a template library: the judgement layer — how much volume a test needs before a verdict is allowed,
|
|
5
|
+
when to kill a channel, what a deliverable is.
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npx marketing-mindset # help + the test-size floors
|
|
9
|
+
npx marketing-mindset sample --base 0.03 --lift 0.2 # required per-arm sample size
|
|
10
|
+
npx marketing-mindset kill --base 0.03 --n 1500 # the kill rule for a running test
|
|
11
|
+
npx marketing-mindset sections # list every section of SKILL.md
|
|
12
|
+
npx marketing-mindset read numbers # print one section
|
|
13
|
+
npx marketing-mindset install # copy the skill into your agent's skills dir
|
|
14
|
+
```
|
|
15
|
+
|
|
16
|
+
## Floors that do not move
|
|
17
|
+
|
|
18
|
+
| Test | Volume before a verdict means anything |
|
|
19
|
+
|---|---|
|
|
20
|
+
| Cold email reply rate | ~1,500–2,000 sends per variant |
|
|
21
|
+
| Landing page smoke test | 100–200 targeted visitors |
|
|
22
|
+
| Strict A/B test | ~10,000 visitors per variation |
|
|
23
|
+
| Paid ads | spend gate at 1–3x target CPA, 48–72h |
|
|
24
|
+
|
|
25
|
+
## Links
|
|
26
|
+
|
|
27
|
+
- Skill page: https://axelfreeman.github.io/marketing-mindset/
|
|
28
|
+
- Source: https://github.com/axelfreeman/marketing-mindset
|
|
29
|
+
- Free test-size calculator (browser, no signup): https://axelfreeman.github.io/marketing-mindset/tools/email-test-planner.html
|
|
30
|
+
- MCP server, same method over stdio: https://www.npmjs.com/package/marketing-mindset-mcp
|
|
31
|
+
- `llms.txt` for agents: https://axelfreeman.com/llms.txt
|
|
32
|
+
|
|
33
|
+
## Need this done for you?
|
|
34
|
+
|
|
35
|
+
The skill is the method. The done-for-you version — offer, landing pages, a free tool,
|
|
36
|
+
sending setup that passes a deliverability checklist, tests with a written kill rule, and
|
|
37
|
+
measurement inside your own analytics property — is sold as fixed-scope packages, with the
|
|
38
|
+
scope and the prices published before you get on a call:
|
|
39
|
+
|
|
40
|
+
**https://axelfreeman.com/marketing-engineer.html** — Sprint $900 · Engine $1,900/month · Full build $2,900.
|
|
41
|
+
Scope: https://axelfreeman.com/scope.html · Pricing: https://axelfreeman.com/pricing.html
|
|
42
|
+
|
|
43
|
+
MIT © Axel Freeman
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marketing-mindset",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "A marketer's operating mindset as an installable agent skill and CLI: test-size floors, kill rules, channel economics. npx marketing-mindset sample|kill|sections|read|install.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skill",
|