ai-exodus 2.0.3 → 2.0.5

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
@@ -138,6 +138,14 @@ npx ai-exodus analyze --passes all --fast
138
138
 
139
139
  Personality, memory, and relationship always run on Sonnet — they need the depth. Saves ~30% of tokens.
140
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
+
141
149
  ### Running in Chunks
142
150
 
143
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.3",
3
+ "version": "2.0.5",
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
@@ -1285,16 +1285,26 @@ function guideTab() {
1285
1285
  </div>
1286
1286
  <p>The <code>--fast</code> flag uses Haiku (cheaper, faster model) for two of the five passes. Here's exactly what runs on what:</p>
1287
1287
  <table class="guide-table">
1288
- <tr><th>Pass</th><th>What it does</th><th>Default</th><th>With --fast</th></tr>
1289
- <tr><td>1. Index</td><td>Maps your conversations — topics, patterns, structure</td><td>Sonnet</td><td>Haiku</td></tr>
1290
- <tr><td>2. Personality</td><td>Extracts your AI's voice, behavior, quirks</td><td>Sonnet</td><td>Sonnet</td></tr>
1291
- <tr><td>3. Memory</td><td>Extracts everything about you — facts, preferences, history</td><td>Sonnet</td><td>Sonnet</td></tr>
1292
- <tr><td>4. Skills</td><td>Detects what your AI did and what triggers each skill</td><td>Sonnet</td><td>Haiku</td></tr>
1293
- <tr><td>5. Relationship</td><td>Writes the story of your relationship</td><td>Sonnet</td><td>Sonnet</td></tr>
1288
+ <tr><th>Pass</th><th>What it does</th><th>Default (best)</th><th>--fast (balanced)</th><th>--model haiku (cheapest)</th></tr>
1289
+ <tr><td>1. Index</td><td>Maps your conversations — topics, patterns, structure</td><td>Sonnet</td><td>Haiku</td><td>Haiku</td></tr>
1290
+ <tr><td>2. Personality</td><td>Extracts your AI's voice, behavior, quirks</td><td>Sonnet</td><td>Sonnet</td><td>Haiku</td></tr>
1291
+ <tr><td>3. Memory</td><td>Extracts everything about you — facts, preferences, history</td><td>Sonnet</td><td>Sonnet</td><td>Haiku</td></tr>
1292
+ <tr><td>4. Skills</td><td>Detects what your AI did and what triggers each skill</td><td>Sonnet</td><td>Haiku</td><td>Haiku</td></tr>
1293
+ <tr><td>5. Relationship</td><td>Writes the story of your relationship</td><td>Sonnet</td><td>Sonnet</td><td>Haiku</td></tr>
1294
1294
  </table>
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>