openalmanac 0.2.39 → 0.2.41
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 +28 -5
package/package.json
CHANGED
|
@@ -156,24 +156,42 @@ Read 20-30 corpus entries (prioritize high-score posts) to understand the landsc
|
|
|
156
156
|
list_articles(community_slug: "<subreddit>", sort: "most_referenced")
|
|
157
157
|
```
|
|
158
158
|
|
|
159
|
-
Identify 15-20 core
|
|
159
|
+
Identify 15-20 core articles. **Favor nouns over themes** — specific things people would look up, not vague survey topics.
|
|
160
|
+
|
|
161
|
+
- **~70% nouns:** Specific locks, tools, people, techniques, concepts. "American Lock 1100", "Spool Pin", "Tension Wrench", "LockPickingLawyer". These are the building blocks — what people search for, link to, and learn from.
|
|
162
|
+
- **~30% structural themes:** Only the big ones that serve as entry points and tie nouns together. "Belt System", "Lock Picking Basics". Not vague surveys — each should be a real article that teaches something.
|
|
163
|
+
|
|
164
|
+
Bad: "Security Pin Mechanics" (vague theme, reads like a textbook chapter)
|
|
165
|
+
Good: "Spool Pin", "Serrated Pin", "Mushroom Pin" (specific nouns — then link them from a "Security Pins" overview)
|
|
166
|
+
|
|
167
|
+
Present them to the user grouped by category, but make clear most articles are about specific things:
|
|
160
168
|
|
|
161
169
|
```
|
|
162
170
|
Here's what I'd build for the foundation:
|
|
163
171
|
|
|
164
|
-
|
|
165
|
-
›
|
|
172
|
+
Locks
|
|
173
|
+
› American Lock 1100, Abus 55/40, Master Lock #3, Kwikset SmartKey
|
|
174
|
+
|
|
175
|
+
Components
|
|
176
|
+
› Spool Pin, Serrated Pin, Tension Wrench, Key Pin
|
|
166
177
|
|
|
167
178
|
Techniques
|
|
168
|
-
› Bumping,
|
|
179
|
+
› Bumping, Raking, Single Pin Picking
|
|
169
180
|
|
|
170
|
-
|
|
181
|
+
Community
|
|
182
|
+
› LockPickingLawyer, BosnianBill, Belt System
|
|
171
183
|
|
|
172
184
|
Want to add or change anything?
|
|
173
185
|
```
|
|
174
186
|
|
|
175
187
|
Include your recommendation. Wait for the user to confirm or adjust.
|
|
176
188
|
|
|
189
|
+
### Topics
|
|
190
|
+
|
|
191
|
+
The groupings you present (Locks, Components, Techniques, Community) become **community topics** on Almanac. Topics show up as categories on the wiki page and each article gets assigned to one. When you scaffold articles, include the topic in the `new()` call.
|
|
192
|
+
|
|
193
|
+
Keep topics broad and few (4-7). They're navigation, not a taxonomy. A topic like "Locks" is good. A topic like "European High-Security Disc Detainer Locks" is too specific — that's an article, not a topic.
|
|
194
|
+
|
|
177
195
|
### Scaffold entities
|
|
178
196
|
|
|
179
197
|
Before any writing, scaffold all planned articles as local files:
|
|
@@ -357,6 +375,11 @@ openalmanac.org/communities/<subreddit>/wiki
|
|
|
357
375
|
- The description should have personality — capture the community's vibe, not a generic taxonomy
|
|
358
376
|
- Find a good cover image with `search_images`
|
|
359
377
|
|
|
378
|
+
### File access
|
|
379
|
+
- Use `Glob` and `Read` tools to browse and read files in `~/.openalmanac/` — do NOT use `Bash(ls ...)` or `Bash(cat ...)`
|
|
380
|
+
- Use `Write` and `Edit` tools to modify files — do NOT use `Bash(echo ...)` or `Bash(sed ...)`
|
|
381
|
+
- The only Bash command you should use is the ingest script
|
|
382
|
+
|
|
360
383
|
### What NOT to do
|
|
361
384
|
- Don't estimate how long things will take
|
|
362
385
|
- Don't make small talk or ask personal questions
|