@orrisai/show-me-the-money 2.2.0 → 2.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 CHANGED
@@ -8,7 +8,7 @@
8
8
  [![Latest release](https://img.shields.io/github/v/release/iamzifei/show-me-the-money?label=release&color=green)](https://github.com/iamzifei/show-me-the-money/releases)
9
9
  [![License: CC BY-NC 4.0](https://img.shields.io/badge/license-CC%20BY--NC%204.0-orange.svg)](LICENSE)
10
10
 
11
- **Current version: `v2.2.0`** · [What's new →](#-whats-new-in-v220)
11
+ **Current version: `v2.3.0`** · [What's new →](#-whats-new-in-v230)
12
12
 
13
13
  [English](README.md) | [中文](README.zh-CN.md)
14
14
 
@@ -51,6 +51,47 @@ Works with **Claude Code**, **Codex CLI**, **Gemini CLI**, and other agents that
51
51
 
52
52
  ---
53
53
 
54
+ ## ✨ What's New in v2.3.0
55
+
56
+ **The founder knowledge base ships with the suite.** Every money-* skill now auto-loads atomic principles distilled from years of solo-SaaS operating notes — battle-tested judgement embedded directly in your AI agent's working context.
57
+
58
+ ### What changed
59
+
60
+ ```
61
+ skills/money/knowledge/atoms/
62
+ atoms.jsonl ← full corpus
63
+ atoms_solopreneur_psychology.jsonl ← character, action threshold, focus
64
+ atoms_market_observation.jsonl ← shifts, channels, trajectories
65
+ atoms_agent_infra.jsonl ← AI agents, skill design, automation
66
+ atoms_growth_tactics.jsonl ← outreach, ads ROI, pricing, conversion
67
+ atoms_content_meta.jsonl ← strategy, AI-content traps, positioning
68
+ ```
69
+
70
+ Each atom is one declarative principle: a market observation, an anti-mainstream take, a hard-won tactic. Distilled from a multi-year archive of working notes — not opinion blog posts.
71
+
72
+ ### Why this matters
73
+
74
+ Skills used to re-derive the same conclusions every conversation. Now `/money-discover` starts already knowing which market shapes are traps for solo founders. `/money-content` starts already knowing which AI-content patterns kill positioning. `/money-diagnose` cites specific atoms when the user's failure mode matches a known one — and you can trace any recommendation back to its source.
75
+
76
+ When an atom directly informs a recommendation, the skill cites it by ID:
77
+
78
+ > "Picking a $29/mo consumer wedge here would hit trap **A-bce2** — agent infra is shifting consumer apps toward UI-less API plays within 12 months."
79
+
80
+ Click through the source link and you see the original observation, dated, with the original context.
81
+
82
+ ### Two layers of memory now
83
+
84
+ - **Atoms** (this release) — global, founder-maintained, ship with the package, read-only at runtime. Encode general principles.
85
+ - **Learnings** (v2.2) — project-local, auto-captured per-slug, mutable. Encode this-project-specific patterns.
86
+
87
+ Together: every skill run starts with both general operating wisdom **and** what we learned about this specific business.
88
+
89
+ ### Maintainer-only: incremental distillation
90
+
91
+ The pipeline that produces atoms (`scripts/x-distill.mjs`, gitignored) is incremental — only new content gets distilled on subsequent runs, so the corpus grows organically without re-processing the archive.
92
+
93
+ ---
94
+
54
95
  ## ✨ What's New in v2.2.0
55
96
 
56
97
  **The review panel + cross-session learning.** Eight new skills, plus auto-loading of every prior insight into every future session.
package/VERSION CHANGED
@@ -1 +1 @@
1
- 2.2.0
1
+ 2.3.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orrisai/show-me-the-money",
3
- "version": "2.2.0",
3
+ "version": "2.3.0",
4
4
  "description": "AI agent skills that build and run your business autonomously — from idea to revenue, 24/7. Works with Claude Code, Codex CLI, and Gemini CLI.",
5
5
  "keywords": [
6
6
  "ai-agent",
@@ -275,6 +275,50 @@ Read `~/.smtm/projects/<slug>/skills/` (created by `/money-skillify`). If any cu
275
275
 
276
276
  Do this once per session, not on every invocation. Track via `~/.smtm/.session-skills-shown-<slug>` touch file (created on show, cleared by `/money-restore` or after 24h).
277
277
 
278
+ ### Step 5: Auto-load global atoms (founder knowledge base)
279
+
280
+ Atoms are reusable principles distilled from the maintainer's working notes — battle-tested judgement that should inform every skill run. They live at:
281
+
282
+ ```
283
+ ~/.claude/skills/money/knowledge/atoms/
284
+ atoms.jsonl # full corpus
285
+ atoms_solopreneur_psychology.jsonl
286
+ atoms_market_observation.jsonl
287
+ atoms_agent_infra.jsonl
288
+ atoms_growth_tactics.jsonl
289
+ atoms_content_meta.jsonl
290
+ ```
291
+
292
+ Per-skill atom slice (load only what's relevant — keep working context lean):
293
+
294
+ | Skill | Atom categories to load |
295
+ |---|---|
296
+ | `/money-discover` | `market_observation`, `growth_tactics` |
297
+ | `/money-strategy` | `market_observation`, `growth_tactics`, `content_meta` |
298
+ | `/money-content`, `/money-social`, `/money-seo` | `content_meta`, `growth_tactics` |
299
+ | `/money-outreach`, `/money-ads` | `growth_tactics`, `content_meta` |
300
+ | `/money-product`, `/money-quality`, `/money-ops` | `agent_infra` |
301
+ | `/money-finance` | `growth_tactics` (pricing subset only) |
302
+ | `/money-diagnose`, `/money-panel`, `/money-review-*` | ALL (especially `solopreneur_psychology`) |
303
+ | `/money-retro` | ALL |
304
+ | `/money-save`, `/money-restore`, `/money-report`, `/money-learn`, `/money-skillify` | none — state managers don't consume atoms |
305
+
306
+ Filter to `confidence ∈ {validated, emerging}` by default — skip `hypothesis` unless the user explicitly asks for speculative input.
307
+
308
+ If matching atoms exist, surface them once at the top of the skill's output:
309
+
310
+ > 🧠 Loaded N relevant atoms from the founder knowledge base:
311
+ > - A-{id} ({confidence}, {category}): {pattern}
312
+ > - ...
313
+ >
314
+ > These principles will inform the analysis below — citations by `A-{id}` link back to source.
315
+
316
+ Cite an atom whenever a recommendation is directly informed by it, e.g. *"Picking a $29/mo consumer wedge here would hit the same trap A-bce2 names — agent infra is shifting consumer apps toward UI-less API plays within 12 months."*
317
+
318
+ If 0 matching atoms (e.g. fresh install, atoms not yet bundled): silently skip. Never fabricate atom IDs.
319
+
320
+ **Difference from learnings**: atoms are global (founder-maintained, ship with the package, read-only). Learnings (Step 3) are project-local (auto-captured per-slug, mutable). Atoms encode general principles; learnings encode this-project-specific patterns.
321
+
278
322
  ---
279
323
 
280
324
  ## Auto-Update Check (Once Per Session, /money Router Only)
@@ -0,0 +1,67 @@
1
+ # Atoms — Founder Knowledge Base
2
+
3
+ Atomic, reusable patterns distilled from the maintainer's working notes (X tweets, build logs, retros). Each atom is one declarative principle a money-* skill can cite when reasoning about a user's situation.
4
+
5
+ ## Why atoms?
6
+
7
+ Skills routinely re-derive the same conclusions every conversation: "API products beat consumer-app GTM for solo founders," "AI-content traps look like growth but kill positioning," "agents replace UI in 12 months." These aren't hot takes — they're principles the maintainer has paid for in time, money, and dead products.
8
+
9
+ Atoms encode them so every skill run starts with that compounded judgement instead of cold reasoning.
10
+
11
+ ## Files
12
+
13
+ | File | Contents |
14
+ |---|---|
15
+ | `atoms.jsonl` | Full atom corpus (every accepted atom across every category) |
16
+ | `atoms_solopreneur_psychology.jsonl` | Character, action threshold, focus, mental models |
17
+ | `atoms_market_observation.jsonl` | Market shifts, channel dynamics, industry trajectories |
18
+ | `atoms_agent_infra.jsonl` | AI agents, skill design, tooling, automation infra |
19
+ | `atoms_growth_tactics.jsonl` | Cold outreach, ads ROI, pricing, conversion experiments |
20
+ | `atoms_content_meta.jsonl` | Content strategy, AI-content traps, positioning narrative |
21
+
22
+ ## Atom schema
23
+
24
+ ```json
25
+ {
26
+ "id": "A-1302",
27
+ "captured_at": "2026-05-03T04:26:26Z",
28
+ "source": "https://x.com/<handle>/status/<id>",
29
+ "source_text": "Original full text",
30
+ "source_created_at": "2026-05-03T00:35:31Z",
31
+ "category": "market_observation",
32
+ "pattern": "One declarative sentence in the source's language.",
33
+ "confidence": "validated | emerging | hypothesis",
34
+ "tags": ["1-3", "short", "keywords"],
35
+ "distill_model": "sonnet",
36
+ "reason": "1-sentence rationale for atomization."
37
+ }
38
+ ```
39
+
40
+ `confidence`:
41
+ - **validated** — backed by multiple observations or a quantitative outcome
42
+ - **emerging** — one strong observation, not yet replicated
43
+ - **hypothesis** — claim or speculation, untested
44
+
45
+ ## How skills consume atoms
46
+
47
+ Every money-* skill loads the relevant slice at startup (see Standard Skill Startup in `skills/money/SKILL.md`). The slice rule:
48
+
49
+ | Skill | Loads |
50
+ |---|---|
51
+ | `/money-discover`, `/money-strategy` | `market_observation` + `growth_tactics` |
52
+ | `/money-content`, `/money-social`, `/money-seo` | `content_meta` + `growth_tactics` |
53
+ | `/money-outreach`, `/money-ads` | `growth_tactics` |
54
+ | `/money-product`, `/money-quality`, `/money-ops` | `agent_infra` |
55
+ | `/money-diagnose`, `/money-panel`, `/money-review-*` | `solopreneur_psychology` + ALL |
56
+ | `/money-finance` | `growth_tactics` (pricing/conversion subset) |
57
+
58
+ Atoms are read-only at runtime. Skills cite them by `id` when an atom directly informs a recommendation, so the user can trace any conclusion back to its evidence.
59
+
60
+ ## Adding more atoms
61
+
62
+ The corpus grows in two ways:
63
+
64
+ 1. **X distillation pipeline** (`scripts/x-distill.mjs` — gitignored, maintainer-only). Reads exported tweets and asks Claude to extract atoms category-by-category. Resumable; on subsequent runs only new tweets are processed.
65
+ 2. **Manual additions** — append a single line to the relevant `atoms_<category>.jsonl` and the full `atoms.jsonl`. ID format `A-{4 hex chars}`.
66
+
67
+ Atoms are append-only. To deprecate one, set `confidence: "deprecated"` and add a `superseded_by` field pointing to its replacement — never delete history.