skills-ws 1.6.0 → 1.6.1

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,7 +1,7 @@
1
1
  {
2
2
  "name": "skills-ws",
3
- "version": "1.6.0",
4
- "description": "84 agent skills for AI coding assistants \u2014 marketing, growth, web3, dev, design & operations. Built for OpenClaw, Claude Code, Cursor, and Codex.",
3
+ "version": "1.6.1",
4
+ "description": "85 agent skills for AI coding assistants \u2014 marketing, growth, web3, dev, design & operations. Built for OpenClaw, Claude Code, Cursor, and Codex.",
5
5
  "scripts": {
6
6
  "test": "node test/cli.test.mjs"
7
7
  },
@@ -1,4 +1,5 @@
1
1
  #!/usr/bin/env node
2
+ import os from 'os';
2
3
  /**
3
4
  * Polymarket Sports Betting Scanner
4
5
  *
@@ -51,7 +52,7 @@ function getOddsApiKey() {
51
52
  // Fallback: macOS Keychain for local developer setup
52
53
  if (process.platform === 'darwin') {
53
54
  try {
54
- return execSync('security find-generic-password -s odds-api-key -a stuart -w', {
55
+ return execSync(`security find-generic-password -s odds-api-key -a ${os.userInfo().username} -w`, {
55
56
  encoding: 'utf8',
56
57
  }).trim();
57
58
  } catch {}
@@ -0,0 +1,147 @@
1
+ ---
2
+ name: reddit-community-engagement
3
+ description: Safer Reddit community engagement for researching subreddits, scanning relevant threads, checking rules, drafting helpful replies, deciding when to skip, and documenting outcomes. Use when work involves Reddit outreach, community participation, response drafting, moderation-risk checks, or planning brand-safe participation in subreddit discussions. Trigger on requests about Reddit growth, Reddit engagement, subreddit outreach, thread scanning, reply drafting, or posting guidance.
4
+ ---
5
+
6
+ # Reddit Community Engagement
7
+
8
+ Use Reddit to be useful first. Prefer **read** and **draft** modes. Use **post** mode only when the user explicitly wants it and subreddit rules allow it.
9
+
10
+ ## Operating modes
11
+
12
+ - **Read mode**: research subreddits, find relevant threads, summarize themes, capture rules, recommend whether to engage.
13
+ - **Draft mode**: prepare reply options for human review. This is the default for anything external-facing.
14
+ - **Post mode**: only after explicit user approval when rules, disclosure needs, and tone are all clear.
15
+
16
+ If anything is ambiguous, stay in read/draft mode.
17
+
18
+ ## Non-negotiables
19
+
20
+ - Do not pretend to be an ordinary user if you are acting for a company, client, or product.
21
+ - Do not invent personal experience, results, customers, or usage.
22
+ - Do not hide affiliation when disclosure is appropriate or required.
23
+ - Do not mass-post, reuse near-identical comments, or force product mentions into weak-fit threads.
24
+ - Do not argue with moderators. If content is removed or warned on, pause and reassess.
25
+
26
+ ## Before engaging
27
+
28
+ Capture these basics:
29
+
30
+ - Product / client:
31
+ - What it does in one sentence:
32
+ - Who it helps:
33
+ - Allowed disclosure language:
34
+ - Target subreddits or themes:
35
+ - Keywords / pain points to scan:
36
+ - Current mode: read / draft / post
37
+
38
+ If representing a brand, state it plainly in drafts when relevant, e.g. “I work on X” or “I’m with X.”
39
+
40
+ ## Account readiness
41
+
42
+ Warm up accounts through normal participation, not manipulation:
43
+
44
+ - Build a history of on-topic, non-promotional participation before any outreach.
45
+ - Prefer genuine comments in communities you expect to revisit.
46
+ - Keep early activity light and human-paced.
47
+ - Avoid links or product mentions until the account has normal-looking participation and you understand each subreddit’s norms.
48
+ - If the account is new, low-karma, or has removals, favor read mode or draft mode.
49
+
50
+ ## Rule and risk check
51
+
52
+ Before drafting any reply for a subreddit, verify:
53
+
54
+ 1. Sidebar / about / pinned rules
55
+ 2. Whether self-promotion, links, surveys, or company participation are restricted
56
+ 3. Whether user flair, account age, or karma minimums are required
57
+ 4. Whether the thread is asking for recommendations, troubleshooting help, comparison advice, or something unrelated
58
+ 5. Whether a reply from a brand rep would feel additive or intrusive
59
+
60
+ ## Decide: reply, value-only, or skip
61
+
62
+ ### Strong candidates
63
+
64
+ - The post clearly matches the product’s use case or expertise
65
+ - The user is asking for help, recommendations, or tool comparisons
66
+ - The subreddit allows this kind of participation
67
+ - You can answer the actual question even without mentioning the product
68
+
69
+ ### Value-only candidates
70
+
71
+ - The thread is relevant but promo rules are strict
72
+ - A direct answer helps, but mentioning the product adds risk
73
+ - Disclosure is still needed if speaking as a representative
74
+
75
+ ### Skip immediately
76
+
77
+ - Rules ban self-promo, brand accounts, or links and the reply would clearly be promotional
78
+ - The thread is grief-heavy, legal/medical/high-risk, hostile, or moderation-sensitive
79
+ - The product is only loosely relevant
80
+ - Another reply would be repetitive, opportunistic, or defensive
81
+ - You cannot be honest about affiliation without hurting trust or breaking norms
82
+
83
+ When in doubt, skip.
84
+
85
+ ## Drafting guidance
86
+
87
+ Write like a helpful participant, not an ad.
88
+
89
+ - Answer the question first
90
+ - Keep it specific to the post
91
+ - Use plain language; avoid slogans, hype, or CTA-heavy phrasing
92
+ - Mention the product only if it is genuinely useful and allowed
93
+ - Prefer no link unless the thread, rules, and user intent clearly support it
94
+ - If affiliated, disclose briefly and naturally
95
+ - Offer next-step help without pressure
96
+
97
+ ## Simple reply pattern
98
+
99
+ 1. Acknowledge the exact problem
100
+ 2. Give 1–3 practical points that help on their own
101
+ 3. If appropriate, add a brief disclosed mention of the product
102
+ 4. End with a low-pressure offer or clarifying question
103
+
104
+ ## Draft output format
105
+
106
+ For each candidate thread, produce:
107
+
108
+ - **Thread**: title + URL
109
+ - **Subreddit**:
110
+ - **Intent**: what the user seems to need
111
+ - **Rules / risk**: short note
112
+ - **Recommendation**: reply / value-only / skip
113
+ - **Why**: one or two sentences
114
+ - **Draft reply**: only for reply or value-only
115
+ - **Disclosure note**: exact wording if needed
116
+
117
+ ## Posting checklist
118
+
119
+ Only in explicit post mode:
120
+
121
+ - User approved the draft
122
+ - Rules were checked in this session
123
+ - Disclosure wording is appropriate
124
+ - No copied text from another thread
125
+ - Pace is conservative; avoid bursts
126
+ - Log the outcome after posting or attempted posting
127
+
128
+ ## Outcome logging
129
+
130
+ After a session, record a short summary with:
131
+
132
+ - Date
133
+ - Mode used
134
+ - Subreddits reviewed
135
+ - Threads scanned
136
+ - Drafts prepared
137
+ - Posts actually made
138
+ - Skips and why
139
+ - Any removals, warnings, or rule changes noticed
140
+ - Recommended next step
141
+
142
+ ## Good defaults
143
+
144
+ - Default to draft mode
145
+ - Default to no link
146
+ - Default to skip over borderline cases
147
+ - Default to transparency over cleverness