ai-exodus 2.0.2 → 2.0.4

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
@@ -91,7 +91,9 @@ claude login
91
91
  npx ai-exodus analyze --passes all
92
92
  ```
93
93
 
94
- Takes 15-60 minutes depending on how many conversations you have. Go make a coffee.
94
+ **This takes a long time.** We're talking hours, not minutes. A few months of conversations can take 24+ hours. A year of heavy use can take days. The checkpoint system saves progress after every chunk, so if it crashes or you close your laptop, just run the same command again and it picks up where it left off.
95
+
96
+ Go live your life while it runs.
95
97
 
96
98
  ### Analyze Only What You Need
97
99
 
@@ -136,6 +138,14 @@ npx ai-exodus analyze --passes all --fast
136
138
 
137
139
  Personality, memory, and relationship always run on Sonnet — they need the depth. Saves ~30% of tokens.
138
140
 
141
+ ### Cheapest/Fastest (All Haiku)
142
+
143
+ ```bash
144
+ npx ai-exodus analyze --passes all --model haiku
145
+ ```
146
+
147
+ Runs **every** pass on Haiku. Significantly faster and cheaper, but lower quality — personality will be more generic, memories may miss subtle details, and the relationship narrative won't have the same depth. Good for a quick first look or a rough draft before running specific passes on Sonnet later.
148
+
139
149
  ### Running in Chunks
140
150
 
141
151
  You can analyze different date ranges on different days. Results merge intelligently:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ai-exodus",
3
- "version": "2.0.2",
3
+ "version": "2.0.4",
4
4
  "description": "Migrate your AI relationship from any platform to Claude. Your AI belongs to you.",
5
5
  "type": "module",
6
6
  "bin": {
package/portal/worker.js CHANGED
@@ -1220,7 +1220,7 @@ function guideTab() {
1220
1220
  <code>npx ai-exodus analyze --passes all</code>
1221
1221
  <button class="btn btn-secondary btn-sm" onclick="copyCommand(this)">Copy</button>
1222
1222
  </div>
1223
- <p class="guide-note">This runs on your Claude subscription. No API key needed. Takes 15-60 minutes depending on how many conversations you have.</p>
1223
+ <p class="guide-note">This runs on your Claude subscription. No API key needed. <strong>This takes hours, not minutes.</strong> A few months of conversations can take 24+ hours. A year of heavy use can take days. The checkpoint system saves progress — if it stops, run the same command again and it resumes where it left off.</p>
1224
1224
  </div>
1225
1225
 
1226
1226
  <div class="guide-section">
@@ -1295,6 +1295,16 @@ function guideTab() {
1295
1295
  <p class="guide-note">Personality, memory, and relationship always run on Sonnet — they need the depth. Indexing and skills are structural work where Haiku does fine. Saves ~30% of tokens.</p>
1296
1296
  </div>
1297
1297
 
1298
+ <div class="guide-section">
1299
+ <h2>I want the cheapest/fastest analysis possible</h2>
1300
+ <div class="guide-command">
1301
+ <code>npx ai-exodus analyze --passes all --model haiku</code>
1302
+ <button class="btn btn-secondary btn-sm" onclick="copyCommand(this)">Copy</button>
1303
+ </div>
1304
+ <p>This runs <strong>every</strong> pass on Haiku — the fastest and cheapest Claude model. It's significantly faster and uses far fewer tokens, but the quality will be lower. Personality extraction will be more generic, memories may miss subtle details, and the relationship narrative won't have the same emotional depth.</p>
1305
+ <p class="guide-note">Good for: a quick first look, testing the tool, or when you have a huge archive and want a rough draft before running specific passes on Sonnet later.</p>
1306
+ </div>
1307
+
1298
1308
  <div class="guide-section">
1299
1309
  <h2>I want to download my results</h2>
1300
1310
  <p>After analysis, go to the <strong>Skills</strong>, <strong>Memories</strong>, or <strong>Persona</strong> tabs and hit the <strong>Download</strong> button. Files come as <code>.md</code> ready to drop into Claude Code, Claude Desktop, or any MCP-compatible tool.</p>