openalmanac 0.2.38 → 0.2.39

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openalmanac",
3
- "version": "0.2.38",
3
+ "version": "0.2.39",
4
4
  "description": "OpenAlmanac — pull, edit, and push articles to the open knowledge base",
5
5
  "type": "module",
6
6
  "bin": {
@@ -108,22 +108,24 @@ When the download finishes, run the filter step:
108
108
  node ${CLAUDE_SKILL_DIR}/scripts/ingest.js <subreddit> filter --stats-only
109
109
  ```
110
110
 
111
- This shows the quality distribution how many posts at each quality level, with sample posts. Use this to decide the right quality threshold. Then present it to the user:
111
+ This returns quality scores and sample posts at each level. Present the results as a table:
112
112
 
113
113
  ```
114
114
  Download complete. X posts, Y comments from r/<subreddit>.
115
115
 
116
- Here's what the data looks like:
116
+ | Quality | Posts | What's in it | Example |
117
+ |-----------|-------|--------------|---------|
118
+ | **high** | ~300 | Best guides, deep discussions, tutorials | "I designed a mechanism to make locks unpickable" (279 upvotes) |
119
+ | **medium** (recommended) | ~900 | Solid community knowledge, good Q&A | "Does anyone know about this lock?" (19 upvotes, 9 comments) |
120
+ | **low** | ~1,800 | Includes casual posts and quick questions | "Mul-T-Lock Interactive" (31 upvotes) |
121
+ | **all** | ~3,000 | Everything that isn't deleted | — |
117
122
 
118
- high quality (top 10%): ~300 posts best discussions, guides, educational content
119
- medium (top 30%): ~900 posts solid community knowledge
120
- low (top 60%): ~1,800 posts — includes questions and casual posts
121
- all: ~3,000 posts
122
-
123
- I'd recommend medium for the foundation — good balance of quality and coverage.
124
- We can dip into the rest during Phase 2.
123
+ I'd recommend medium good balance of quality and coverage.
124
+ We can always dip into the rest during Phase 2.
125
125
  ```
126
126
 
127
+ Fill in the actual numbers and sample titles from the `--stats-only` output. The samples make it real — the user can see what kind of posts are at each level.
128
+
127
129
  Wait for the user to pick (or confirm your recommendation), then run:
128
130
 
129
131
  ```bash