openalmanac 0.2.41 → 0.2.43

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/dist/setup.js CHANGED
@@ -588,7 +588,7 @@ function printRedditBanner() {
588
588
  for (let i = 0; i < LOGO_LINES.length; i++) {
589
589
  process.stdout.write(`${GRADIENT[i]}${LOGO_LINES[i]}${RST}\n`);
590
590
  }
591
- process.stdout.write(`\n${DIM} Turn any subreddit into a wiki${RST}\n`);
591
+ process.stdout.write(`\n${DIM} Turn any subreddit into a published wiki${RST}\n`);
592
592
  }
593
593
  /* ── Reddit result screen ──────────────────────────────────────── */
594
594
  function printRedditResult(agent, loginResult, mcpChanged, toolCount) {
@@ -620,9 +620,6 @@ function printRedditResult(agent, loginResult, mcpChanged, toolCount) {
620
620
  w(row(` ${WHITE_BOLD}Next steps${RST}`));
621
621
  w(empty);
622
622
  w(row(` ${BLUE}1.${RST} Type ${WHITE_BOLD}claude${RST} to start Claude Code`));
623
- w(row(` ${BLUE}2.${RST} Run ${BLUE}/reddit-wiki r/<subreddit>${RST}`));
624
- w(empty);
625
- w(row(` ${DIM}Ask "how does reddit wiki work?" to learn more${RST}`));
626
623
  w(empty);
627
624
  w(` ${BLUE_DIM}\u2570${"─".repeat(innerW)}\u256f${RST}`);
628
625
  w("");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openalmanac",
3
- "version": "0.2.41",
3
+ "version": "0.2.43",
4
4
  "description": "OpenAlmanac — pull, edit, and push articles to the open knowledge base",
5
5
  "type": "module",
6
6
  "bin": {
@@ -38,7 +38,7 @@ If the user runs `/reddit-wiki` without arguments or asks how it works, explain
38
38
  - **Data storage:** Everything is stored locally at `~/.openalmanac/corpus/<subreddit>/`. The user can delete it anytime after the wiki is published.
39
39
  - **Any subreddit:** They can pick any subreddit they're interested in. Some smaller or newer subreddits may not have data available — if that happens, you'll suggest alternatives or nearby subreddits that do have data.
40
40
 
41
- Then ask them which subreddit they want to build a wiki for.
41
+ Then end with a single inviting line that asks what they're into and offers to help them find subreddits if they don't already have one in mind. For example: `What kinds of things are you into? If you want, I can help you find some subreddits worth exploring.`
42
42
 
43
43
  ## Step 1: Scout
44
44