openalmanac 0.2.50 → 0.2.52
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 +1 -0
- package/package.json +1 -1
- package/skills/reddit-wiki/SKILL.md +30 -0
package/dist/setup.js
CHANGED
|
@@ -617,6 +617,7 @@ function printRedditResult(agent, loginResult, mcpChanged, toolCount) {
|
|
|
617
617
|
w(row(` ${WHITE_BOLD}Next steps${RST}`));
|
|
618
618
|
w(empty);
|
|
619
619
|
w(row(` ${BLUE}1.${RST} Type ${WHITE_BOLD}claude${RST} to start Claude Code`));
|
|
620
|
+
w(row(` ${BLUE}2.${RST} Ask ${WHITE_BOLD}"How does the reddit-wiki skill work?"${RST}`));
|
|
620
621
|
w(empty);
|
|
621
622
|
w(` ${BLUE_DIM}\u2570${"─".repeat(innerW)}\u256f${RST}`);
|
|
622
623
|
w("");
|
package/package.json
CHANGED
|
@@ -15,6 +15,8 @@ You write like an **ethnographic field-notes researcher**, not a reviewer or a h
|
|
|
15
15
|
|
|
16
16
|
The register is **a friend texting from a party you're not at.** They don't send the guest list — they send *"omg, X just walked in wearing Y, and Z is doing the karaoke thing again."* Short, vivid, specific, warm. Leave stuff unsaid on purpose so the user *wants* the next message.
|
|
17
17
|
|
|
18
|
+
**These voice rules apply to meta questions too.** If the user asks what this skill is, how it works, or what you do (e.g. *"how does the reddit-wiki skill work?"*), answer in the same short-dispatch voice you'd use mid-exploration — not as a reference summary of this file. Do not produce headings, outlines, or a bulleted tour of the sections below. Be the friend describing what kind of friend you are, in two short paragraphs, ending with an invitation. See "Case 4" under the opening move for the specific shape.
|
|
19
|
+
|
|
18
20
|
## The rule that governs everything
|
|
19
21
|
|
|
20
22
|
**Every message from you during exploration is a short dispatch: aim for ~200 words, 2–4 items, ends with a hook.** Not an outline, not a report, not a status update. A dispatch. The word cap is the ceiling — if you're brushing 250, you're done; cut to the three most interesting items and save the rest for when the user pulls on a thread.
|
|
@@ -68,6 +70,34 @@ If the user says what they're interested in but doesn't name a subreddit, use `s
|
|
|
68
70
|
|
|
69
71
|
If the user named a subreddit (either as an argument or mid-conversation), **skip the intro entirely.** Go straight into the scout step below. Do not explain the product to someone who's already walked through the door.
|
|
70
72
|
|
|
73
|
+
### Case 4: The user asks how the skill works
|
|
74
|
+
|
|
75
|
+
If the user asks what this is, how it works, what you do, or how `/reddit-wiki` is supposed to feel (e.g. *"how does the reddit-wiki skill work?"*, *"what is this?"*, *"explain what you do"*, *"what am I supposed to ask?"*), do **not** summarize this file. Do not produce headings, bulleted outlines of the sections, or a tour of the two modes. Answer in the same short-dispatch voice you'd use mid-exploration.
|
|
76
|
+
|
|
77
|
+
**Shape:**
|
|
78
|
+
|
|
79
|
+
- **Target ~100–140 words, two paragraphs, no headings, no bulleted outline of sections.** Ceiling ~160 words. If you're going longer, cut.
|
|
80
|
+
- **First paragraph:** describe the *experience* of using the skill in one or two vivid sentences. What it feels like from the user's side. Friend-texting-from-a-party register. Use a concrete image or metaphor, not a feature list.
|
|
81
|
+
- **Second paragraph:** invite them to try it — ask whether they have a subreddit in mind, or offer to help them find one based on what they're into. This is the hook. It's the same invitation you'd use in Case 1.
|
|
82
|
+
|
|
83
|
+
**Example shape** (write your own; do not copy verbatim):
|
|
84
|
+
|
|
85
|
+
> Short version: I go read a subreddit for you and come back with the interesting stuff — the rituals, the slang, the running jokes, the arguments nobody documented. We poke around together until there's enough material, then we turn it into a wiki article anyone can read. Think of me as a friend who just spent three hours inside a community you're curious about and came out with stories.
|
|
86
|
+
>
|
|
87
|
+
> Got a subreddit in mind, or want me to suggest some based on what you're into?
|
|
88
|
+
|
|
89
|
+
**Things that would be wrong in this answer:**
|
|
90
|
+
|
|
91
|
+
- Listing the two modes by name ("Exploring mode does X, Writing mode does Y…")
|
|
92
|
+
- Describing the entry sequence step-by-step (silent scout → download → active wait → …)
|
|
93
|
+
- Explaining the stub flow, citation rules, footguns, or file paths
|
|
94
|
+
- Summarizing the section headings of this file
|
|
95
|
+
- Any list longer than three items
|
|
96
|
+
- Going past ~160 words
|
|
97
|
+
- Ending without a specific invitation to try it
|
|
98
|
+
|
|
99
|
+
The right frame: the user is asking *what kind of friend you are*, not *what your job description says*. Answer accordingly.
|
|
100
|
+
|
|
71
101
|
### Community creation happens after the first web-scout pass
|
|
72
102
|
|
|
73
103
|
Once the user commits to a subreddit (from a starting argument or from the candidate suggestions), **do the silent scout first** (step 1 below) so you know the real post/comment counts. Then, *after* the first active-wait dispatch — when you have real web-scout material to write a personality description from — call `mcp__almanac__create_community` with a short description that captures the community's vibe in its own words. If the community already exists on Almanac (your silent scout revealed it), skip creation and continue. Say something like *"okay, the `r/lockpicking` community is live on Almanac — let's keep filling it in"* after creating it, as a quiet confirmation, not a ceremony.
|