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 +1 -1
- package/skills/reddit-wiki/SKILL.md +11 -9
package/package.json
CHANGED
|
@@ -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
|
|
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
|
-
|
|
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
|
-
|
|
119
|
-
|
|
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
|