marketing-mindset 1.6.0 → 1.6.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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/bin/cli.js +2 -2
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -78,7 +78,7 @@ The money side of the same floor `sample` computes: contacts needed in both arms
78
78
  ### Dated plan: `plan`
79
79
 
80
80
  ```
81
- npx -y marketing-mindset@1.6.0 plan --base 0.03 --lift 0.2 --daily 500 --weeks 4
81
+ npx -y marketing-mindset plan --base 0.03 --lift 0.2 --daily 500 --weeks 4
82
82
  ```
83
83
 
84
84
  The floor from `sample`/`budget` laid out on a calendar: contacts per week, cumulative volume against the floor, the first date the test can honestly be read, the mechanics-only first week, and an honest verdict when the volume cannot reach the floor inside the plan. `--json` for agents. Work with me: https://axelfreeman.com/marketing-engineer.html
package/bin/cli.js CHANGED
@@ -333,7 +333,7 @@ function runPlan(opts) {
333
333
  end: day(w * 7 - 1),
334
334
  planned_contacts: daily * 7,
335
335
  cumulative: daily * 7 * w,
336
- against_floor_pct: Math.round(Math.min(100, (daily * 7 * w / need) * 1000) / 10)
336
+ against_floor_pct: Math.round(Math.min(100, ((daily * 7 * w) / need) * 100) * 10) / 10
337
337
  });
338
338
  }
339
339
  const capacity = daily * 7 * weeks;
@@ -370,7 +370,7 @@ function runPlan(opts) {
370
370
  (p2 * 100).toFixed(2) + "% (lift " + lift + "), " + daily + " contacts/day, " + weeks + " week(s)");
371
371
  console.log("Floor: " + perArm + " per arm, " + need + " contacts in total. Weekly volume: " + daily * 7 + ".");
372
372
  weekRows.forEach((w) => {
373
- console.log(" Week " + w + " (" + w.start + " .. " + w.end + "): " + w.planned_contacts +
373
+ console.log(" Week " + w.week + " (" + w.start + " .. " + w.end + "): " + w.planned_contacts +
374
374
  " contacts, cumulative " + w.cumulative + " (" + w.against_floor_pct + "% of the floor)");
375
375
  });
376
376
  console.log("First honest read: " + out.read_date + " (day " + daysToRead + ").");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "marketing-mindset",
3
- "version": "1.6.0",
3
+ "version": "1.6.2",
4
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|budget|warmup|aeo|jd|sections|read|install.",
5
5
  "keywords": [
6
6
  "agent-skill",