marketing-mindset 1.1.1 → 1.3.0
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 +18 -0
- package/bin/cli.js +115 -0
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -13,6 +13,12 @@ npx marketing-mindset read numbers # print one section
|
|
|
13
13
|
npx marketing-mindset install # copy the skill into your agent's skills dir
|
|
14
14
|
```
|
|
15
15
|
|
|
16
|
+
## `jd` — marketing engineer job description
|
|
17
|
+
|
|
18
|
+
`npx marketing-mindset jd --level senior` prints the JD with the artifacts due by day 90,
|
|
19
|
+
the sample-size floors, the kill rule and the screening questions. Web version:
|
|
20
|
+
https://axelfreeman.github.io/marketing-mindset/tools/marketing-engineer-jd-generator.html
|
|
21
|
+
|
|
16
22
|
## Floors that do not move
|
|
17
23
|
|
|
18
24
|
| Test | Volume before a verdict means anything |
|
|
@@ -41,3 +47,15 @@ scope and the prices published before you get on a call:
|
|
|
41
47
|
Scope: https://axelfreeman.com/scope.html · Pricing: https://axelfreeman.com/pricing.html
|
|
42
48
|
|
|
43
49
|
MIT © Axel Freeman
|
|
50
|
+
|
|
51
|
+
## Agent readiness / AEO checklist from the CLI
|
|
52
|
+
|
|
53
|
+
```
|
|
54
|
+
npx marketing-mindset aeo # 23 weighted checks, grouped, with the max score
|
|
55
|
+
npx marketing-mindset aeo --json # same data for a script or an agent
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
The same checklist is a browser tool with a live score:
|
|
59
|
+
<https://axelfreeman.github.io/marketing-mindset/tools/aeo-readiness-checklist.html>.
|
|
60
|
+
If you want the plumbing in that checklist built for you (offer page, query-intent pages, schema,
|
|
61
|
+
`llms.txt`, IndexNow, the tracked event), packages are published at https://axelfreeman.com/marketing-engineer.html.
|
package/bin/cli.js
CHANGED
|
@@ -60,6 +60,113 @@ function readSkill() {
|
|
|
60
60
|
return fs.readFileSync(SKILL, "utf8");
|
|
61
61
|
}
|
|
62
62
|
|
|
63
|
+
|
|
64
|
+
/* --- agent-readiness / AEO checklist (23 weighted checks) -------------------------------
|
|
65
|
+
* The same checklist that runs in the browser tool, as data: agents can read it and score
|
|
66
|
+
* a site without fetching HTML.
|
|
67
|
+
* marketing-mindset jd marketing engineer job description
|
|
68
|
+
* marketing-mindset aeo grouped checklist with weights and the max score
|
|
69
|
+
* marketing-mindset aeo --json machine-readable
|
|
70
|
+
*/
|
|
71
|
+
const AEO_GROUPS = [["Crawlability",[["robots.txt does not block GPTBot, ClaudeBot, PerplexityBot, Google-Extended, OAI-SearchBot",3],["Pages render without JavaScript, or have a server-side/no-JS fallback",2],["No login wall or consent interstitial in front of the content you want quoted",3],["The page returns 200 to a plain curl with no cookies",2],["One canonical URL per answer - no www/non-www or trailing-slash duplicates",2]]],["Answer-ready content",[["Every important page answers one question in the first 60 words",3],["Headings are questions a human would type, not internal project names",2],["Prices, limits and timeframes are stated as numbers, not 'flexible'",3],["Claims have a source or a live URL attached",2],["A definition page exists for the category you want to be cited in",3]]],["Machine-readable",[["schema.org markup on service/product pages (Service, Offer, Product, FAQPage)",3],["FAQPage or QAPage markup on question pages, answers 40-500 words",2],["XML sitemap submitted, and every new URL pinged via IndexNow",2],["llms.txt describes what the site answers and where the canonical pages are",2],["Organisation/Person entity links the page to a real, verifiable identity",2]]],["Someone else's page",[["You are present where the model already reads: package registries, repos, docs",3],["At least one open, mergeable pull request or discussion contribution",2],["Your content is mirrored somewhere you do not control",2],["A third-party page links to your canonical URL",3]]],["Proof and measurement",[["Every claim on the site can be opened by the reader in one click",3],["One tracked event for the outcome that matters, in your own analytics property",3],["A public changelog or artifact list with dates",2],["An archived snapshot of the key pages exists",1]]]];
|
|
72
|
+
const AEO_MAX = AEO_GROUPS.reduce((a, [_, its]) => a + its.reduce((b, [, w]) => b + w, 0), 0);
|
|
73
|
+
|
|
74
|
+
function runAeo(opts) {
|
|
75
|
+
if (opts.json) {
|
|
76
|
+
console.log(JSON.stringify({ max_score: AEO_MAX, groups: AEO_GROUPS.map(([g, its]) => ({ group: g, checks: its.map(([t, w]) => ({ check: t, weight: w })) })) }, null, 2));
|
|
77
|
+
return 0;
|
|
78
|
+
}
|
|
79
|
+
console.log("Agent readiness / AEO checklist - can AI answers find, read and quote the site?");
|
|
80
|
+
console.log("Max score: " + AEO_MAX + "\n");
|
|
81
|
+
let n = 0;
|
|
82
|
+
AEO_GROUPS.forEach(([g, its]) => {
|
|
83
|
+
console.log(g + ":");
|
|
84
|
+
its.forEach(([t, w]) => { n += 1; console.log(" [" + w + "] " + t); });
|
|
85
|
+
console.log("");
|
|
86
|
+
});
|
|
87
|
+
console.log(n + " checks, " + AEO_MAX + " points. Score guide: <30% invisible for structural reasons,");
|
|
88
|
+
console.log("30-60% crawlable but not quotable, 60-80% quoted occasionally (third-party presence missing),");
|
|
89
|
+
console.log(">80% the rest is cadence. Two checks carry the most weight: one question answered in the");
|
|
90
|
+
console.log("first 60 words, and prices/limits stated as numbers.");
|
|
91
|
+
console.log("Full description of the work: https://axelfreeman.com/marketing-engineer.html");
|
|
92
|
+
return 0;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
/* --- job description (marketing engineer) ------------------------------------------------
|
|
97
|
+
* The same generator as the free web tool, as text: artifacts due by day 90, the sample-size
|
|
98
|
+
* floors, the kill rule, and the screening questions that separate an engineer from a marketer.
|
|
99
|
+
* marketing-mindset jd senior, all surfaces
|
|
100
|
+
* marketing-mindset jd --level contract --mode contract
|
|
101
|
+
* marketing-mindset jd --surfaces seo,out,analytics
|
|
102
|
+
*/
|
|
103
|
+
const JD_SURFACES = {
|
|
104
|
+
seo: "search and answer engines (pages written to be quoted, schema, llms.txt)",
|
|
105
|
+
out: "outbound and lifecycle email (list, sequence, deliverability, suppression)",
|
|
106
|
+
paid: "paid acquisition (structure, creative, spend gates)",
|
|
107
|
+
auto: "automation and tracking (routing, events, failure alerts)",
|
|
108
|
+
analytics: "measurement (one event that matters, sample-size floors, kill rules)",
|
|
109
|
+
ai: "agent skills and AI-assisted production (reusable operating files, not one-off prompts)",
|
|
110
|
+
};
|
|
111
|
+
|
|
112
|
+
function runJd(opts) {
|
|
113
|
+
const jdOpt = (v, dflt) => (v === undefined || v === true || (typeof v === "number" && isNaN(v))) ? dflt : String(v);
|
|
114
|
+
const level = jdOpt(opts.level, "senior");
|
|
115
|
+
const mode = jdOpt(opts.mode, level === "contract" ? "contract" : "fulltime");
|
|
116
|
+
const sv = jdOpt(opts.surfaces, null);
|
|
117
|
+
const keys = sv ? sv.split(",").map((s) => s.trim()).filter((s) => JD_SURFACES[s]) : Object.keys(JD_SURFACES);
|
|
118
|
+
const surf = keys.length ? keys : Object.keys(JD_SURFACES);
|
|
119
|
+
const company = jdOpt(opts.company, "[company, product, what you sell in one line]");
|
|
120
|
+
const bottleneck = jdOpt(opts.bottleneck, "[the bottleneck you are hiring against]");
|
|
121
|
+
const ninety = mode === "contract"
|
|
122
|
+
? "A 6-week engagement with one written kill rule, then a decision"
|
|
123
|
+
: level === "lead"
|
|
124
|
+
? "A documented system: which paths exist, what each one costs, what gets killed next quarter"
|
|
125
|
+
: "A path live in production with its event recording, or a written note saying why it was killed";
|
|
126
|
+
const L = [];
|
|
127
|
+
L.push("# Marketing Engineer (" + level + ", " + mode + ")", "");
|
|
128
|
+
L.push("## The company and the job");
|
|
129
|
+
L.push(company + ".", "");
|
|
130
|
+
L.push("We are hiring a marketing engineer because: " + bottleneck + ".", "");
|
|
131
|
+
L.push("You will not be handed a channel to run and a deck to fill in. You will be handed a broken or "
|
|
132
|
+
+ "unmeasured path and be expected to make it work, show the number, and write the rule that decides "
|
|
133
|
+
+ "whether it lives.", "");
|
|
134
|
+
L.push("## What the role owns");
|
|
135
|
+
surf.forEach((k, i) => L.push((i + 1) + ". " + JD_SURFACES[k]));
|
|
136
|
+
L.push("", "## What must exist by day 90");
|
|
137
|
+
L.push("1. One path live in production: entry point, sequence or flow, and the event that fires on a conversion.");
|
|
138
|
+
L.push("2. A written declaration of the sample size each running test needs before a result counts as a result.");
|
|
139
|
+
L.push("3. A kill rule per test, written before the test starts: at what volume and what result we stop.");
|
|
140
|
+
L.push("4. One dashboard we can open without asking you for an export.");
|
|
141
|
+
L.push("5. " + ninety + ".");
|
|
142
|
+
L.push("", "## How we will measure you");
|
|
143
|
+
L.push("- Cost per qualified conversation or per activated account, when the volume is above the declared floor.");
|
|
144
|
+
L.push("- Live, openable artifacts still running 30 days after you last touched them.");
|
|
145
|
+
L.push("- Whether a decision made last month can be re-checked today from the data, without you in the room.");
|
|
146
|
+
L.push("- We do not count posts published, prompts written, or hours logged.");
|
|
147
|
+
L.push("", "## Requirements");
|
|
148
|
+
L.push("- You have shipped something that is still running: a page, a sequence, a script, an integration. Links beat adjectives.");
|
|
149
|
+
L.push("- You can explain, in one paragraph, why a 4-of-100 result is not a win.");
|
|
150
|
+
L.push("- You work in the tooling yourself: HTML/CSS, a spreadsheet, analytics, basic scripting, or an agent that writes them for you.");
|
|
151
|
+
L.push("- You write plainly; internal names and jargon are not allowed in anything a customer reads.");
|
|
152
|
+
L.push("", "## Nice to have");
|
|
153
|
+
L.push("- Experience writing pages that answer engines quote (schema, FAQ markup, plain HTML).");
|
|
154
|
+
L.push("- A history of killing your own work in public, with the numbers attached.");
|
|
155
|
+
L.push("", "## Not this role");
|
|
156
|
+
L.push("- Meeting-led account management, community management, brand campaigns, reporting for its own sake.");
|
|
157
|
+
L.push("", "## Screening questions (ask these first)");
|
|
158
|
+
L.push("1. Send us one link to something you built that is still live.");
|
|
159
|
+
L.push("2. We ran 40 sends, got 4 replies, variant B looks better. What do you do next?");
|
|
160
|
+
L.push("3. How many sends does a two-variant email test need before the result means anything? "
|
|
161
|
+
+ "(Expected: ~1,500-2,000 per arm at a 3% baseline, 80% power, 20% relative lift.)");
|
|
162
|
+
L.push("4. Name one thing you killed and what the number was.");
|
|
163
|
+
L.push("5. What will you build in the first two weeks here, and how will we see it?");
|
|
164
|
+
L.push("", "--", "Generated by marketing-mindset (npm). Method and pricing: " + OFFER
|
|
165
|
+
+ " | Packages: " + COST + " | Web version of this tool: " + JD_TOOL);
|
|
166
|
+
console.log(L.join("\n"));
|
|
167
|
+
return 0;
|
|
168
|
+
}
|
|
169
|
+
|
|
63
170
|
const cmd = (process.argv[2] || "").toLowerCase();
|
|
64
171
|
const rest = process.argv.slice(3);
|
|
65
172
|
|
|
@@ -92,6 +199,10 @@ if (cmd === "sample") {
|
|
|
92
199
|
? "keep running — below the required volume, a verdict now is noise"
|
|
93
200
|
: "read it — volume is sufficient; kill if conversions are at or under the floor"
|
|
94
201
|
}, null, 2));
|
|
202
|
+
} else if (cmd === "aeo") {
|
|
203
|
+
process.exit(runAeo(flags(rest)));
|
|
204
|
+
} else if (cmd === "jd") {
|
|
205
|
+
process.exit(runJd(flags(rest)));
|
|
95
206
|
} else if (cmd === "sections") {
|
|
96
207
|
sections(readSkill()).forEach((s, i) => console.log(String(i + 1).padStart(2) + ". " + s.title));
|
|
97
208
|
} else if (cmd === "read") {
|
|
@@ -114,6 +225,10 @@ Usage:
|
|
|
114
225
|
--base 0.03 --lift 0.2 --power 0.8 --alpha 0.05
|
|
115
226
|
npx marketing-mindset kill kill rule for a running test
|
|
116
227
|
--base 0.03 --n 1500 --lift 0.2
|
|
228
|
+
npx marketing-mindset jd marketing engineer job description
|
|
229
|
+
--level senior --mode fulltime --surfaces seo,out,analytics
|
|
230
|
+
npx marketing-mindset aeo agent-readiness / AEO checklist (23 weighted checks)
|
|
231
|
+
--json machine-readable
|
|
117
232
|
npx marketing-mindset sections every section of the skill
|
|
118
233
|
npx marketing-mindset read numbers print one section
|
|
119
234
|
npx marketing-mindset install copy the skill into your agent's skills dir
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "marketing-mindset",
|
|
3
|
-
"version": "1.
|
|
4
|
-
"description": "A marketer's operating mindset as an installable agent skill and CLI: test-size floors, kill rules,
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"description": "A marketer's operating mindset as an installable agent skill and CLI: test-size floors, kill rules, agent-readiness checklist, marketing-engineer job description. npx marketing-mindset sample|kill|aeo|jd|sections|read|install.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"agent-skill",
|
|
7
7
|
"skill",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"codex",
|
|
13
13
|
"llm",
|
|
14
14
|
"prompt",
|
|
15
|
-
"sample-size"
|
|
15
|
+
"sample-size",
|
|
16
|
+
"job-description"
|
|
16
17
|
],
|
|
17
18
|
"license": "MIT",
|
|
18
19
|
"author": "Axel Freeman",
|