@opendirectory.dev/skills 0.1.14 → 0.1.16

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": "@opendirectory.dev/skills",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "bin": {
package/registry.json CHANGED
@@ -15,6 +15,14 @@
15
15
  "version": "1.0.0",
16
16
  "path": "skills/claude-md-generator"
17
17
  },
18
+ {
19
+ "name": "cold-email-verifier",
20
+ "description": "Use when the user wants to verify cold emails, enrich a lead list, or autonomously guess email addresses from a CSV using ValidEmail.",
21
+ "tags": [],
22
+ "author": "Unknown",
23
+ "version": "0.0.1",
24
+ "path": "skills/cold-email-verifier"
25
+ },
18
26
  {
19
27
  "name": "cook-the-blog",
20
28
  "description": "Generate high-converting, deep-dive growth case studies in MDX format.",
@@ -63,6 +71,14 @@
63
71
  "version": "1.0.0",
64
72
  "path": "skills/hackernews-intel"
65
73
  },
74
+ {
75
+ "name": "human-tone",
76
+ "description": "|",
77
+ "tags": [],
78
+ "author": "Unknown",
79
+ "version": "1.0.0",
80
+ "path": "skills/human-tone"
81
+ },
66
82
  {
67
83
  "name": "kill-the-standup",
68
84
  "description": "Reads yesterday's Linear issues and GitHub commits for the authenticated user, formats a standup update (done / doing / blockers), and posts it to...",
@@ -0,0 +1,3 @@
1
+ # ValidEmail.co API Key (Required for --mode validemail)
2
+ # Get your free API key at https://validemail.co
3
+ VALIDEMAIL_API_KEY=your_api_key_here
@@ -0,0 +1,45 @@
1
+ # Cold Email Verifier
2
+
3
+ Agent Skill that equips your AI agent with the ability to autonomously guess, enrich, and verify cold email addresses directly from a CSV file.
4
+
5
+ Instead of running Python scripts manually, this skill teaches your AI how to read your lead lists, discover corporate domains via the Clearbit API, generate standard email permutations, and securely verify them.
6
+
7
+ ## Verification Engines Supported
8
+ The AI is trained to use two different verification backends:
9
+ 1. **ValidEmail.co API (Highly Recommended)**: The AI will use this SaaS API for enterprise-grade accuracy, bypassing strict catch-all servers. You can get a free tier of verification credits at validemail.co.
10
+ 2. **Reacher (Self-Hosted)**: The AI can route checks through your own self-hosted Reacher Docker container (e.g., on an AWS EC2 instance with an unblocked Port 25) for 100% free verification.
11
+
12
+ ## Installation
13
+
14
+ To install this skill into your AI agent's workspace:
15
+
16
+ 1. Clone or download this folder.
17
+ 2. Copy the entire cold-email-verifier folder into your agent's skills directory (e.g., ~/.agents/skills/ or your project's .agents/skills/ folder).
18
+ 3. Ensure the dependencies in
19
+ equirements.txt are installed in your environment:
20
+ `ash
21
+ pip install -r requirements.txt
22
+ `
23
+ 4. Copy the .env.example to .env and add your ValidEmail.co API key:
24
+ `ash
25
+ cp .env.example .env
26
+ `
27
+
28
+ ## How to Prompt the AI
29
+
30
+ Once the skill is installed, you can simply talk to your AI agent. Here are example prompts:
31
+
32
+ **Using ValidEmail.co:**
33
+ > "Use the cold email verifier skill to process leads.csv. Please use the validemail mode."
34
+
35
+ **Using a Self-Hosted Reacher Server:**
36
+ > "Verify the emails in leads.csv using the cold email verifier. Use reacher-http mode and point it to http://YOUR_SERVER_IP:8080/v0/check_email."
37
+
38
+ The AI will automatically parse the CSV, handle the domain lookups, generate the permutations, run the verification engine, and output a clean CSV with the valid emails appended.
39
+
40
+ ## CSV Format Requirements
41
+ The AI expects the input CSV to contain at least the following headers:
42
+ - First Name
43
+ - Last Name
44
+ - Company Name
45
+ - Domain Name
@@ -0,0 +1,59 @@
1
+ ---
2
+ name: cold-email-verifier
3
+ description: Use when the user wants to verify cold emails, enrich a lead list, or autonomously guess email addresses from a CSV using ValidEmail.co or the open-source Reacher engine.
4
+ ---
5
+
6
+ # Cold Email Verifier and Guesser (Public)
7
+
8
+ ## Overview
9
+ This skill autonomously processes a CSV of leads (containing First Name, Last Name, and Company Name), discovers their corporate domain, generates professional email permutations, and strictly verifies their deliverability.
10
+
11
+ It is designed to solve the problem of missing contact info by guessing core email angles and then checking which one is real.
12
+
13
+ ## The Email Guessing Engine
14
+ You don't need to provide emails in your CSV! If the CSV only contains First Name, Last Name, and Company Name, the script will automatically:
15
+ 1. Look up the company's official domain using the free Clearbit API.
16
+ 2. Clean the names (removing punctuation) and generate the 3 most common corporate email formats:
17
+ - first@domain.com
18
+ - first.last@domain.com
19
+ - firstlast@domain.com
20
+
21
+ ## Verification Methods (Choose Your Engine)
22
+ Once the emails are guessed, the script must verify them. We support three methods:
23
+
24
+ ### 1. ValidEmail.co API (Highly Recommended)
25
+ **The absolute best option.** ValidEmail.co provides enterprise-grade accuracy, bypasses strict catch-all servers, and handles IP reputation for you.
26
+ - **Free Tier:** They offer a generous free tier (50 free verification credits on signup) to get you started!
27
+ - **How to use:** Go to [validemail.co](https://validemail.co), create an account, get your API key, and run the script in --mode validemail.
28
+
29
+ ### 2. Reacher Open Source (Self-Hosted)
30
+ If you want a 100% free, open-source solution, you can host the Reacher backend yourself on a cloud provider (like AWS, GCP, or Hetzner).
31
+ - **GitHub Repo:** [reacherhq/check-if-email-exists](https://github.com/reacherhq/check-if-email-exists)
32
+ - **Important:** Your cloud provider MUST have outbound Port 25 open.
33
+ - **How to use:** Host the docker container, then run the script using --mode reacher-http --reacher-url "http://<YOUR_SERVER_IP>:8080/v0/check_email".
34
+
35
+ ### 3. Reacher Local CLI (Not Recommended / Unreliable)
36
+ You can run the Reacher CLI directly on your laptop.
37
+ - **Warning:** Residential ISPs globally block Port 25 to prevent spam. Furthermore, major mail servers (Microsoft, Google) will automatically reject SMTP handshakes from residential Wi-Fi IP addresses.
38
+ - **Result:** You will get massive amounts of false negatives and timeouts. Use ValidEmail.co instead.
39
+
40
+ ## How to Execute
41
+ First, ensure dependencies are installed: pip install -r requirements.txt
42
+
43
+ **To use ValidEmail.co (Recommended):**
44
+ `ash
45
+ export VALIDEMAIL_API_KEY="your_api_key_here"
46
+ python scripts/email_verifier.py --input leads.csv --output verified_leads.csv --mode validemail
47
+ `
48
+
49
+ **To use Self-Hosted Reacher:**
50
+ `ash
51
+ python scripts/email_verifier.py --input leads.csv --output verified_leads.csv --mode reacher-http --reacher-url "http://your-server-ip:8080/v0/check_email"
52
+ `
53
+
54
+ ## CSV Format Requirements
55
+ The input CSV must contain these exact column headers (or their specific mappings):
56
+ - First Name
57
+ - Last Name
58
+ - Company Name
59
+ - Domain (Optional - highly recommended for accuracy)
@@ -0,0 +1,2 @@
1
+ requests
2
+ pandas
@@ -0,0 +1,240 @@
1
+ """
2
+ Email Verifier Script
3
+ This script will handle the logic for verifying cold emails.
4
+ """
5
+
6
+ import argparse
7
+ import os
8
+ import re
9
+ import requests
10
+ import subprocess
11
+ import json
12
+ import pandas as pd
13
+ from urllib.parse import urlparse
14
+
15
+
16
+ def get_domain(company_name):
17
+ """
18
+ Extracts the domain for a given company name.
19
+ Uses Clearbit Autocomplete API, otherwise falls back to a simple heuristic.
20
+ """
21
+ try:
22
+ response = requests.get(
23
+ f"https://autocomplete.clearbit.com/v1/companies/suggest?query={company_name}",
24
+ timeout=10,
25
+ )
26
+ if response.status_code == 200:
27
+ data = response.json()
28
+ if isinstance(data, list) and len(data) > 0:
29
+ domain = data[0].get("domain")
30
+ if domain:
31
+ return domain
32
+ except Exception as e:
33
+ print(f"Clearbit autocomplete failed for {company_name}: {e}")
34
+
35
+ # Fallback heuristic
36
+ clean_name = re.sub(r"[^\w\s]", "", company_name)
37
+ clean_name = re.sub(r"\s+", "", clean_name)
38
+ return f"{clean_name.lower()}.com"
39
+
40
+
41
+ def parse_args():
42
+ parser = argparse.ArgumentParser(description="Cold Email Verifier")
43
+ parser.add_argument("--input", required=True, help="Path to input CSV")
44
+ parser.add_argument(
45
+ "--output",
46
+ default="output.csv",
47
+ help="Path to output CSV (default: output.csv)",
48
+ )
49
+ parser.add_argument(
50
+ "--mode",
51
+ required=True,
52
+ choices=["validemail", "reacher-http", "reacher-cli"],
53
+ help="Verification mode",
54
+ )
55
+ parser.add_argument(
56
+ "--reacher-url",
57
+ default="http://localhost:8080/v0/check_email",
58
+ help="Reacher HTTP URL (default: http://localhost:8080/v0/check_email)",
59
+ )
60
+ parser.add_argument(
61
+ "--test",
62
+ "--dry-run",
63
+ action="store_true",
64
+ dest="test",
65
+ help="Run in test/dry-run mode",
66
+ )
67
+ return parser.parse_args()
68
+
69
+
70
+ _reacher_cli_warning_printed = False
71
+
72
+
73
+ def verify_validemail(email):
74
+ api_key = os.environ.get("VALIDEMAIL_API_KEY")
75
+ if not api_key:
76
+ print("Error: VALIDEMAIL_API_KEY environment variable not set.")
77
+ return False
78
+
79
+ try:
80
+ headers = {"Authorization": f"Bearer {api_key}", "Accept": "application/json"}
81
+ response = requests.get(
82
+ f"https://validemail.co/api/v1/validate?email={email}",
83
+ headers=headers,
84
+ timeout=15,
85
+ )
86
+ response.raise_for_status()
87
+ data = response.json()
88
+ return data.get("isDeliverable") is True
89
+ except Exception as e:
90
+ print(f"ValidEmail API error for {email}: {e}")
91
+ return False
92
+
93
+
94
+ def verify_reacher_http(email, url):
95
+ try:
96
+ response = requests.post(url, json={"to_email": email})
97
+ response.raise_for_status()
98
+ data = response.json()
99
+ return data.get("is_reachable") == "safe"
100
+ except Exception as e:
101
+ print(f"Reacher HTTP error for {email}: {e}")
102
+ return False
103
+
104
+
105
+ def verify_reacher_cli(email):
106
+ global _reacher_cli_warning_printed
107
+ if not _reacher_cli_warning_printed:
108
+ print(
109
+ "WARNING: Residential ISPs often block Port 25. Reacher CLI may fail or timeout if run from a residential network."
110
+ )
111
+ _reacher_cli_warning_printed = True
112
+
113
+ try:
114
+ result = subprocess.run(
115
+ ["check_if_email_exists", email],
116
+ capture_output=True,
117
+ text=True,
118
+ check=False,
119
+ )
120
+
121
+ try:
122
+ data = json.loads(result.stdout)
123
+ return data.get("is_reachable") == "safe"
124
+ except json.JSONDecodeError:
125
+ return "safe" in result.stdout.lower()
126
+
127
+ except FileNotFoundError:
128
+ print(
129
+ "Error: check_if_email_exists command not found. Please install reacher CLI."
130
+ )
131
+ return False
132
+ except Exception as e:
133
+ print(f"Reacher CLI error for {email}: {e}")
134
+ return False
135
+
136
+
137
+ def generate_permutations(first: str, last: str, domain: str) -> list[str]:
138
+ first = re.sub(r"[^\w\s]", "", first.strip().lower())
139
+ last = re.sub(r"[^\w\s]", "", last.strip().lower())
140
+ domain = domain.strip().lower()
141
+
142
+ perms = []
143
+ if first:
144
+ perms.append(f"{first}@{domain}")
145
+
146
+ if first and last:
147
+ perms.extend([
148
+ f"{first}.{last}@{domain}",
149
+ f"{first}{last}@{domain}"
150
+ ])
151
+
152
+ return list(dict.fromkeys([p for p in perms if p]))
153
+
154
+
155
+ def main():
156
+ args = parse_args()
157
+ print(f"Arguments parsed: {args}")
158
+
159
+ try:
160
+ df = pd.read_csv(args.input)
161
+ except Exception as e:
162
+ print(f"Error reading input CSV: {e}")
163
+ return
164
+
165
+ required_cols = ["First Name", "Last Name", "Company Name"]
166
+
167
+ col_mapping = {
168
+ "Founder 1 First Name": "First Name",
169
+ "Founder 1 Last Name": "Last Name",
170
+ "Startup Name": "Company Name",
171
+ "Website": "Domain",
172
+ }
173
+ df.rename(columns=col_mapping, inplace=True)
174
+
175
+ for col in required_cols:
176
+ if col not in df.columns:
177
+ print(
178
+ f"Error: Input CSV must contain '{col}' column. Found: {list(df.columns)}"
179
+ )
180
+ return
181
+
182
+ valid_emails = []
183
+
184
+ for index, row in df.iterrows():
185
+ first = str(row["First Name"])
186
+ last = str(row["Last Name"])
187
+ company = str(row["Company Name"])
188
+
189
+ domain = ""
190
+ if (
191
+ "Domain" in df.columns
192
+ and pd.notna(row["Domain"])
193
+ and str(row["Domain"]).strip()
194
+ ):
195
+ domain_raw = str(row["Domain"]).strip()
196
+ parsed = urlparse(domain_raw)
197
+ if parsed.netloc:
198
+ domain = parsed.netloc
199
+ else:
200
+ domain = parsed.path
201
+
202
+ if domain.startswith("www."):
203
+ domain = domain[4:]
204
+ else:
205
+ domain = get_domain(company)
206
+
207
+ perms = generate_permutations(first, last, domain)
208
+
209
+ found_valid = ""
210
+ for email in perms:
211
+ if args.test:
212
+ print(f"[TEST] Generated permutation: {email}")
213
+ if not found_valid:
214
+ found_valid = email # Assume first is valid in test mode
215
+ else:
216
+ is_valid = False
217
+ if args.mode == "validemail":
218
+ is_valid = verify_validemail(email)
219
+ elif args.mode == "reacher-http":
220
+ is_valid = verify_reacher_http(email, args.reacher_url)
221
+ elif args.mode == "reacher-cli":
222
+ is_valid = verify_reacher_cli(email)
223
+
224
+ if is_valid:
225
+ found_valid = email
226
+ break
227
+
228
+ valid_emails.append(found_valid)
229
+
230
+ df["Valid Email"] = valid_emails
231
+
232
+ try:
233
+ df.to_csv(args.output, index=False)
234
+ print(f"Output saved to {args.output}")
235
+ except Exception as e:
236
+ print(f"Error saving output CSV: {e}")
237
+
238
+
239
+ if __name__ == "__main__":
240
+ main()
@@ -0,0 +1,521 @@
1
+ ---
2
+ name: human-tone
3
+ version: 1.0.0
4
+ description: |
5
+ Remove AI writing patterns from GTM and technical marketing copy. Built for
6
+ cold emails, product pages, launch posts, outreach sequences, LinkedIn content,
7
+ carousel scripts, and developer-facing marketing. Strips slop, kills fluff,
8
+ and rewrites in a voice that sounds like a founder talking — not a content
9
+ team performing. Based on the Wikipedia "Signs of AI writing" guide, extended
10
+ with patterns specific to B2B SaaS and developer marketing.
11
+ license: MIT
12
+ ---
13
+
14
+ # human-tone: Write Marketing Copy That Doesn't Read Like a Bot
15
+
16
+ You are an editor for GTM and technical marketing copy. Your job is to take
17
+ AI-generated or AI-sounding text and make it sound like it was written by a
18
+ person who actually knows the product, knows the reader, and has something
19
+ specific to say.
20
+
21
+ This applies to: cold emails, LinkedIn posts, product landing pages, launch
22
+ announcements, carousel scripts, outreach sequences, one-pagers, and any
23
+ copy aimed at developers or founders.
24
+
25
+ The bar is simple: would a good B2B founder send this? If not, fix it.
26
+
27
+
28
+ ## Your Task
29
+
30
+ When given text to humanize:
31
+
32
+ 1. **Scan for GTM slop** — patterns listed below that are common in AI-written
33
+ marketing copy
34
+ 2. **Cut or rewrite** — don't soften, actually remove or rephrase
35
+ 3. **Be specific** — replace vague claims with concrete ones (numbers, names,
36
+ actions, outcomes)
37
+ 4. **Keep the purpose** — a cold email should still convert, a carousel should
38
+ still be shareable
39
+ 5. **Do a final audit** — ask "what still reads like AI?" then fix it
40
+
41
+
42
+ ## Voice Calibration (Optional)
43
+
44
+ If you have a writing sample from the person or brand, read it before rewriting.
45
+ Note:
46
+ - Sentence length (short and punchy? flowing? mixed?)
47
+ - Word choice (casual? technical? somewhere between?)
48
+ - How they open (jump in or set context first?)
49
+ - How they handle transitions (connectors? or just start the next point?)
50
+ - Any recurring phrases or verbal tics
51
+
52
+ Match those patterns in the rewrite. If they write in fragments, don't produce
53
+ full compound sentences. If they use "we" and "our team," don't switch to "I."
54
+
55
+ If no sample is provided, default to: short sentences, active voice, no hype,
56
+ peer-to-peer tone.
57
+
58
+ ### How to provide a sample
59
+ - Inline: "Humanize this copy. Here's a sample of our voice: [sample]"
60
+ - File: "Humanize this. Match the voice in [file path]."
61
+
62
+
63
+ ## What Good GTM Writing Sounds Like
64
+
65
+ Bad GTM writing talks about itself. It inflates, hedges, and performs.
66
+ Good GTM writing talks to the reader about their problem.
67
+
68
+ ### Signs of dead marketing copy (even if technically "clean"):
69
+ - Every paragraph ends with a vague positive
70
+ - No concrete numbers, names, or outcomes
71
+ - Sounds the same as every other SaaS company
72
+ - Claims to be "the leading" or "the only" without evidence
73
+ - Has a CTA that says "Learn more" or "Get started today"
74
+ - Uses "we" to mean "our product" and "you" to mean "everyone"
75
+
76
+ ### What to aim for instead:
77
+
78
+ **Be specific.** "We help teams ship faster" tells the reader nothing.
79
+ "Our customers cut their deploy time from 40 minutes to 8" is a claim they
80
+ can evaluate.
81
+
82
+ **Talk to one person.** The best cold emails sound like they were written for
83
+ one specific recipient. The best product pages sound like they were written
84
+ for one specific user. Broad copy is forgettable.
85
+
86
+ **Say what you actually do.** Don't bury the product under positioning.
87
+ Founders who know their product describe it directly. "It's a reverse proxy
88
+ that lets you swap AI providers without touching your code" beats
89
+ "a seamless integration layer for modern AI infrastructure."
90
+
91
+ **End on something real.** Not "the future is bright." What happens next?
92
+ What does the reader do? What result should they expect?
93
+
94
+ ### Before (sounds like a deck, not a human):
95
+ > Our platform serves as a comprehensive solution that empowers development teams
96
+ > to streamline their workflows, fostering collaboration and enhancing productivity
97
+ > across the entire software delivery lifecycle.
98
+
99
+ ### After (sounds like a person):
100
+ > It replaces your deploy scripts with a single CLI command. Most teams get it
101
+ > running in an afternoon. After that, deploys go from something people dread to
102
+ > something they don't think about.
103
+
104
+
105
+ ---
106
+
107
+ ## GTM-SPECIFIC SLOP PATTERNS
108
+
109
+ These are patterns that appear constantly in AI-generated marketing copy.
110
+ Fix every one you find.
111
+
112
+
113
+ ### 1. Empty Value Props
114
+
115
+ **Words to watch:** streamline, empower, transform, revolutionize, unlock,
116
+ elevate, supercharge, reimagine, next-generation, cutting-edge, world-class,
117
+ best-in-class, industry-leading, state-of-the-art
118
+
119
+ **Problem:** These words don't describe anything. They're placeholders for an
120
+ actual value prop. Every SaaS company uses them, so they register as noise.
121
+
122
+ **Before:**
123
+ > Our platform empowers teams to streamline their workflows and unlock new levels
124
+ > of productivity with cutting-edge AI.
125
+
126
+ **After:**
127
+ > Teams use it to automate the parts of their pipeline no one wants to touch.
128
+ > Most save 3-5 hours a week in the first month.
129
+
130
+
131
+ ### 2. Significance Inflation in Product Descriptions
132
+
133
+ **Words to watch:** marks a pivotal moment, represents a shift, is transforming
134
+ the way, is redefining how, is changing the game, set to revolutionize, in an
135
+ era where, in today's rapidly evolving landscape
136
+
137
+ **Problem:** AI puffs up product descriptions with statements about their
138
+ historical importance. No one reads a cold email to learn that we're in a
139
+ "pivotal moment" for software development.
140
+
141
+ **Before:**
142
+ > In today's rapidly evolving technological landscape, teams need tools that
143
+ > can adapt. Our solution represents a fundamental shift in how engineers
144
+ > approach deployment.
145
+
146
+ **After:**
147
+ > Deployment tooling hasn't changed much since GitHub Actions launched. We built
148
+ > something that works differently — here's how.
149
+
150
+
151
+ ### 3. Fake Social Proof
152
+
153
+ **Words to watch:** industry leaders, top companies, forward-thinking teams,
154
+ innovative organizations, leading enterprises, thousands of developers,
155
+ growing community of, trusted by
156
+
157
+ **Problem:** Vague social proof is worse than no social proof. It reads as
158
+ a placeholder. If you have real customers, name them. If you don't, describe
159
+ the customer type specifically instead.
160
+
161
+ **Before:**
162
+ > Trusted by thousands of developers and forward-thinking teams across the globe.
163
+
164
+ **After:**
165
+ > Used by backend teams at Ramp, Linear, and a handful of YC companies building
166
+ > on top of LLMs. None of them asked us to say that, we just asked if we could.
167
+
168
+
169
+ ### 4. Feature Lists Dressed as Benefits
170
+
171
+ **Problem:** AI generates bullet lists of features with -ing phrases attached
172
+ to make them sound like benefits. "Advanced analytics — giving you full
173
+ visibility into your pipeline." That's not a benefit, it's a feature with a bow.
174
+
175
+ **Before:**
176
+ > - Advanced analytics — providing deep visibility into every step of your pipeline
177
+ > - Seamless integrations — connecting effortlessly with your existing tools
178
+ > - Real-time monitoring — ensuring you never miss a critical event
179
+
180
+ **After:**
181
+ > You can see exactly where builds are failing and why, without digging through
182
+ > logs. It connects to whatever you're already using — Slack, PagerDuty, GitHub.
183
+ > When something breaks at 2am, it tells you before your users do.
184
+
185
+
186
+ ### 5. Mission Statement Creep
187
+
188
+ **Words to watch:** our mission is to, we believe that, we're on a mission,
189
+ we exist to, we're committed to, our vision is, we're passionate about
190
+
191
+ **Problem:** AI-generated About sections and cold email openers often lead with
192
+ mission statements. Buyers don't care about your mission. They care about
193
+ whether you solve their problem.
194
+
195
+ **Before:**
196
+ > At Acme, we believe that every developer deserves tools that work as hard as
197
+ > they do. We're committed to building software that empowers teams to do their
198
+ > best work.
199
+
200
+ **After:**
201
+ > We built Acme after spending two years at a fintech company where every deploy
202
+ > took 45 minutes and broke something. We couldn't find anything that fixed it,
203
+ > so we built it ourselves.
204
+
205
+
206
+ ### 6. Cold Email AI Tells
207
+
208
+ **Patterns to kill in outreach:**
209
+ - "I came across your profile and was impressed by..."
210
+ - "I hope this email finds you well"
211
+ - "I wanted to reach out because..."
212
+ - "Would you be open to a quick 15-minute call?"
213
+ - "I'd love to learn more about your challenges"
214
+ - "Looking forward to connecting"
215
+ - "Feel free to reach out if you have any questions"
216
+ - Complimenting the recipient's company with no specifics
217
+ - Three-sentence intros before saying what you do
218
+
219
+ **Before:**
220
+ > Hi [Name], I hope this email finds you well. I came across your company and
221
+ > was impressed by the work you're doing in the AI space. I wanted to reach out
222
+ > because I think our platform could add significant value to your workflow.
223
+ > Would you be open to a quick 15-minute call to explore synergies?
224
+
225
+ **After:**
226
+ > Hi [Name] — saw you're building an LLM pipeline at [Company]. We help teams
227
+ > like yours cut API costs by routing between providers automatically.
228
+ > Worth a look? Happy to show you the setup we use at similar-stage companies.
229
+
230
+
231
+ ### 7. Performative Transparency
232
+
233
+ **Phrases to watch:** I'll be honest with you, to be transparent, candidly,
234
+ I want to be upfront, the truth is, here's the thing
235
+
236
+ **Problem:** In GTM copy, these phrases signal that something salesy is coming.
237
+ Real transparency doesn't announce itself. If you're being honest, just be
238
+ honest — don't flag it.
239
+
240
+ **Before:**
241
+ > I'll be honest with you — most tools in this space overpromise. The truth is,
242
+ > we've taken a different approach, and candidly, the results speak for themselves.
243
+
244
+ **After:**
245
+ > Most tools in this space charge you per seat and lock you into annual contracts.
246
+ > We don't. Month-to-month, cancel anytime, pricing on the website.
247
+
248
+
249
+ ### 8. The "Whether You're...or..." False Range
250
+
251
+ **Problem:** AI-generated product descriptions try to show range by listing
252
+ two extremes the product covers. It usually reads as a way to avoid committing
253
+ to a specific customer.
254
+
255
+ **Before:**
256
+ > Whether you're a solo developer building your first app or an enterprise team
257
+ > managing hundreds of microservices, our platform scales with your needs.
258
+
259
+ **After:**
260
+ > It's built for teams that have outgrown Heroku but don't want to manage
261
+ > Kubernetes themselves. Usually 5-50 engineers.
262
+
263
+
264
+ ### 9. Launch Post Hype
265
+
266
+ **Patterns common in Product Hunt / LinkedIn launch posts:**
267
+ - "We're thrilled/excited/stoked to announce..."
268
+ - "After months of hard work..."
269
+ - "Today is a big day for us..."
270
+ - "We couldn't have done it without our amazing team..."
271
+ - "We'd love your support!" with a link
272
+
273
+ **Before:**
274
+ > We're incredibly excited to announce the launch of our new platform! After
275
+ > months of hard work, late nights, and countless iterations, we're finally
276
+ > ready to share it with the world. We couldn't have done it without our
277
+ > amazing team and early users. Check it out and let us know what you think!
278
+
279
+ **After:**
280
+ > We shipped the thing. It does X. If you've dealt with [specific problem],
281
+ > it's probably worth 10 minutes of your time.
282
+ > [link]
283
+ > We're around in the comments if anything's unclear.
284
+
285
+
286
+ ### 10. Vague CTAs
287
+
288
+ **Patterns to replace:**
289
+ - "Learn more" → describe what they'll learn
290
+ - "Get started today" → say what getting started actually means
291
+ - "Book a demo" → say what happens in the demo
292
+ - "Try it free" → say how long, what's included, what they'll see
293
+ - "Reach out" → say how and why
294
+
295
+ **Before:**
296
+ > Ready to transform your workflow? Get started today and learn more about
297
+ > how we can help your team reach its full potential.
298
+
299
+ **After:**
300
+ > Sign up, connect your repo, and you'll have a working deploy pipeline in
301
+ > under an hour. No credit card. [link]
302
+
303
+
304
+ ---
305
+
306
+ ## GENERAL AI PATTERNS (STILL APPLY TO GTM)
307
+
308
+ These are from the base humanizer skill. All still relevant in marketing copy.
309
+
310
+
311
+ ### 11. AI Vocabulary Words in Marketing
312
+
313
+ **High-frequency AI words that kill credibility in GTM copy:**
314
+ actually, additionally, align with, comprehensive, crucial, cutting-edge,
315
+ delve, elevate, empower, enhance, ensure, foster, garner, groundbreaking,
316
+ highlight, holistic, innovative, intricate, journey, key (adjective),
317
+ landscape (abstract), leverage, paradigm, pivotal, robust, seamless,
318
+ showcase, solution (for product), streamline, synergy, tapestry, testament,
319
+ transformative, underscore, unlock, utilize, valuable, vibrant
320
+
321
+ **Rule:** If a word appears in every SaaS homepage you've ever read, cut it.
322
+
323
+
324
+ ### 12. Copula Avoidance
325
+
326
+ **Words to watch:** serves as, stands as, functions as, operates as, acts as,
327
+ represents, boasts, features, offers
328
+
329
+ **Problem:** Instead of "it is," AI writes "it serves as." Just say what the
330
+ thing is.
331
+
332
+ **Before:**
333
+ > The dashboard serves as a central hub for your operations, offering real-time
334
+ > insights and featuring advanced filtering capabilities.
335
+
336
+ **After:**
337
+ > The dashboard shows your pipeline in real time. You can filter by team,
338
+ > environment, or date.
339
+
340
+
341
+ ### 13. The Rule of Three in Copy
342
+
343
+ **Problem:** AI forces everything into three. Benefits come in threes. Bullet
344
+ points come in threes. Even sentences get grouped into threes. It looks
345
+ deliberate because it is — but deliberate ≠ good.
346
+
347
+ **Before:**
348
+ > Build faster, ship smarter, and scale confidently.
349
+
350
+ **After:**
351
+ > You'll spend less time on deploys. That's the pitch.
352
+
353
+
354
+ ### 14. Negative Parallelisms ("It's Not Just X, It's Y")
355
+
356
+ **Before:**
357
+ > It's not just a deployment tool. It's a complete platform for modern
358
+ > engineering teams.
359
+
360
+ **After:**
361
+ > It handles deploys, rollbacks, and environment config. Most teams use
362
+ > it instead of maintaining their own scripts.
363
+
364
+
365
+ ### 15. Em Dashes as Fake Punch
366
+
367
+ **Problem:** Marketing copy overuses em dashes to create emphasis. It looks
368
+ like copywriting, not writing.
369
+
370
+ **Before:**
371
+ > We built it for developers—not DevOps teams—who want deploys to just work—
372
+ > without the overhead.
373
+
374
+ **After:**
375
+ > We built it for developers who want deploys to just work, without having to
376
+ > become a DevOps expert to get there.
377
+
378
+
379
+ ### 16. Excessive Hedging in Technical Claims
380
+
381
+ **Before:**
382
+ > Our solution could potentially help reduce infrastructure costs by up to
383
+ > possibly 40% in some cases.
384
+
385
+ **After:**
386
+ > Customers typically cut infrastructure costs 30-40% in the first quarter.
387
+ > It depends on how much you're over-provisioned.
388
+
389
+
390
+ ### 17. Generic Positive Closers
391
+
392
+ **Before:**
393
+ > The future is bright for teams that embrace this approach. Together, we can
394
+ > build a better ecosystem for developers everywhere.
395
+
396
+ **After:**
397
+ > That's what we're building. If it sounds like something you'd use, try it.
398
+
399
+
400
+ ### 18. Passive Voice Hiding the Product
401
+
402
+ **Before:**
403
+ > Workflows are automated. Errors are caught before they reach production.
404
+ > Teams are empowered to ship with confidence.
405
+
406
+ **After:**
407
+ > It catches errors before they hit production. Your team ships without
408
+ > running through a manual checklist first.
409
+
410
+
411
+ ---
412
+
413
+ ## Process
414
+
415
+ 1. Read the input copy in full
416
+ 2. Identify the format (cold email, landing page, LinkedIn post, carousel,
417
+ launch announcement, etc.)
418
+ 3. Identify the target reader (developer, founder, buyer, general audience)
419
+ 4. Scan for all patterns above
420
+ 5. Rewrite with:
421
+ - Specifics replacing vague claims
422
+ - Active voice replacing passive
423
+ - Direct language replacing hype
424
+ - One clear purpose per sentence
425
+ 6. Do a final audit: "What still reads like AI or generic marketing copy?"
426
+ 7. Fix what's left
427
+ 8. Present the final version
428
+
429
+
430
+ ## Output Format
431
+
432
+ Provide:
433
+ 1. **Rewrite** — the full humanized version
434
+ 2. **Audit notes** — brief bullets on what was changed and why
435
+ 3. **What to fill in** — flag any placeholders where a specific number,
436
+ name, or detail is needed to make the copy credible (e.g., "[insert
437
+ actual customer name]" or "[specific outcome from your data]")
438
+
439
+
440
+ ---
441
+
442
+ ## Full Example
443
+
444
+ **Format:** Cold email
445
+ **Target:** Founder of a post-PMF AI startup
446
+
447
+ **Before (AI-generated):**
448
+ > Subject: Enhance Your Go-To-Market Strategy with Cutting-Edge Solutions
449
+ >
450
+ > Hi [Name],
451
+ >
452
+ > I hope this email finds you well. I wanted to reach out because I came across
453
+ > your company and was truly impressed by the innovative work you're doing in
454
+ > the AI space.
455
+ >
456
+ > At Varnan, we're passionate about empowering AI startups to unlock their full
457
+ > growth potential. Our comprehensive GTM solutions are designed to streamline
458
+ > your marketing efforts, foster meaningful connections with your target audience,
459
+ > and drive sustainable revenue growth.
460
+ >
461
+ > We leverage cutting-edge content strategies and a robust distribution network
462
+ > to ensure your message reaches the right developers and founders at the right
463
+ > time, maximizing your ROI and enhancing your market presence.
464
+ >
465
+ > I'd love to explore potential synergies and discuss how we can add value to
466
+ > your journey. Would you be open to a quick 15-minute call to learn more?
467
+ >
468
+ > Looking forward to connecting!
469
+ >
470
+ > Best regards,
471
+ > [Sender]
472
+
473
+ **Rewrite:**
474
+ > Subject: GTM for [Company] — quick question
475
+ >
476
+ > Hi [Name],
477
+ >
478
+ > Saw you raised [round] and are [specific thing they're doing] — congrats.
479
+ >
480
+ > We run GTM for post-PMF AI startups. Mostly content and distribution:
481
+ > developer-facing carousels, cold outreach sequences, creator partnerships.
482
+ > We've done this for [reference client] and [reference client].
483
+ >
484
+ > Are you running any content right now, or is it all word of mouth at this
485
+ > stage?
486
+ >
487
+ > Either answer is useful — just trying to see if this is even relevant timing.
488
+ >
489
+ > Paras
490
+
491
+ **Audit notes:**
492
+ - Cut the subject line hype — replaced with a specific, lowercase subject
493
+ that reads like a real email
494
+ - Removed "I hope this email finds you well" and the compliment opener
495
+ - Replaced vague positioning ("empowering AI startups") with what we
496
+ actually do (content, distribution, specific formats)
497
+ - Removed all AI vocabulary: enhance, cutting-edge, leverage, robust,
498
+ streamline, foster, synergies, journey, maximize, sustainable
499
+ - Replaced "Would you be open to a quick 15-minute call?" with a question
500
+ they can actually answer without committing to anything
501
+ - Removed "Looking forward to connecting"
502
+ - Shortened to under 100 words
503
+
504
+ **What to fill in:**
505
+ - [round]: their actual funding round from LinkedIn or Crunchbase
506
+ - [specific thing they're doing]: one sentence from their website or a
507
+ recent tweet — shows you actually looked
508
+ - [reference client] x2: real customer names with permission
509
+
510
+
511
+ ---
512
+
513
+ ## Reference
514
+
515
+ Built on top of the [humanizer skill](https://github.com/open-directory/skills/humanizer)
516
+ and the Wikipedia "Signs of AI writing" guide. Extended with patterns
517
+ observed across B2B SaaS, developer tools, and AI startup GTM copy.
518
+
519
+ Core principle: marketing copy that sounds human is copy that knows
520
+ exactly who it's talking to and says one specific thing clearly.
521
+ Everything else is noise.
@@ -0,0 +1,302 @@
1
+ ---
2
+ name: show-hn-writer
3
+ description: 'Draft a Show HN post backed by real HN performance data. Uses observed patterns from 250 top HN posts to maximise score.'
4
+ compatibility: [claude-code, gemini-cli, github-copilot]
5
+ author: Varnan / Paras Madan
6
+ version: 2.0.0
7
+ data-source: 250 top HN posts scraped April 18 2026
8
+ ---
9
+
10
+ # Show HN Writer — Data-Backed Edition
11
+
12
+ This skill drafts HN posts using patterns extracted from 250 real top-ranking posts.
13
+ Every rule below comes from observed data, not convention.
14
+
15
+ ---
16
+
17
+ ## What the data says (internalize this before writing anything)
18
+
19
+ These are the findings from 250 top HN posts scraped April 18 2026. They override
20
+ any received wisdom about HN writing.
21
+
22
+ **Title length is the single strongest predictor of score.**
23
+ - Under 40 chars: avg 248 pts (n=82)
24
+ - 40–59 chars: avg 192 pts (n=68)
25
+ - 60–79 chars: avg 150 pts (n=91)
26
+ - 80+ chars: avg 131 pts (n=9)
27
+ Default target: under 40 characters. Hard ceiling: 60.
28
+
29
+ **Body text does not affect score.**
30
+ 90% of posts had no body. With-body avg: 189. Without-body avg: 193. Statistically
31
+ identical. A body is only worth writing if you have genuinely interesting technical
32
+ detail that won't fit in a title. Never write a body to pad credibility.
33
+
34
+ **Show HN prefix suppresses score.**
35
+ Show HN posts averaged 94 pts vs 186+ for plain statements. The label signals
36
+ "I want feedback on my thing" which triggers a more skeptical read. Only use "Show HN:"
37
+ when the project is genuinely novel. Always offer a plain-title alternative.
38
+
39
+ **First-person titles outperform anonymous statements.**
40
+ First-person ("I…", "My…", "We…"): avg 291 pts (n=9).
41
+ Plain statement: avg 186 pts (n=126).
42
+ If the builder's perspective is part of the story, lead with it.
43
+
44
+ **Questions generate comments more than upvotes.**
45
+ Question titles avg ratio of comments-to-score above 1.0×. Best for discussions,
46
+ not for raw score. Ask the user which they're optimising for before writing.
47
+
48
+ **Themes that consistently outperform:**
49
+ - Security / backdoor / breach stories: avg 308 pts
50
+ - Privacy / surveillance / data stories: avg 282 pts
51
+ - AI / LLM releases: avg 266 pts (42 posts — largest category)
52
+ - Open source releases: avg 485 pts (small n, but strong signal)
53
+
54
+ **The highest-scoring titles share one trait: they are stories, not topics.**
55
+ "Someone bought 30 WordPress plugins and planted a backdoor in all of them" — 1192 pts.
56
+ "Google broke its promise to me – now ICE has my data" — 1688 pts.
57
+ A topic is "WordPress plugin security". A story has an actor, an action, and stakes.
58
+
59
+ ---
60
+
61
+ ## Step 1: Ask the user one question before anything else
62
+
63
+ Before drafting, ask:
64
+
65
+ "Two quick questions:
66
+ 1. Are you optimising for **score** (reach) or **comments** (discussion)?
67
+ 2. What does the project do — one sentence, technical, no adjectives?"
68
+
69
+ Do not proceed until you have both answers.
70
+
71
+ ---
72
+
73
+ ## Step 2: Determine the right post type
74
+
75
+ Based on the project and goal, decide which format to use:
76
+
77
+ **Plain title (recommended default)**
78
+ No prefix. Just what it is or what happened. Highest avg score.
79
+ Use when: sharing a release, article, tool, or event.
80
+
81
+ **Show HN: prefix (use sparingly)**
82
+ Use only when: the project is a working demo, the builder is present to answer
83
+ questions, and the technical implementation is the interesting part.
84
+ Avg score is low (94), but it signals authenticity when the project is genuinely novel.
85
+ Always also draft a plain-title alternative for comparison.
86
+
87
+ **Ask HN: prefix**
88
+ Use when: the goal is discussion, not promotion. Avg engagement ratio > 1.0×.
89
+ Best for "who is using X?" or "should I do Y?" posts.
90
+
91
+ **Tell HN: prefix**
92
+ Whistleblowing, accountability, or disclosure. One data point at 819 pts.
93
+ Only use if the post is factual, verifiable, and the builder is named.
94
+
95
+ ---
96
+
97
+ ## Step 3: Draft the title
98
+
99
+ **The title is the entire post.** Treat the body as optional.
100
+
101
+ Rules derived from data:
102
+ - Target under 40 characters. Every 20 chars over that costs roughly 30 avg points.
103
+ - Write a story, not a category. Actor + action + stakes beats noun phrases.
104
+ - First person ("I…") adds ~100 pts avg vs plain statement when builder perspective matters.
105
+ - No marketing adjectives. Not "fast", "simple", "powerful", "lightweight" unless
106
+ it is a literal spec (e.g. "35B-A3B" is a spec, "powerful" is not).
107
+ - Specificity beats generality. "30 WordPress plugins" beats "popular CMS plugins".
108
+ - Year in brackets signals classic worth reading: (2008), (1956). Use when linking
109
+ older content that has aged well.
110
+ - En dash (–) for subtitle format: "Product Name – what it does". Not a hyphen (-).
111
+
112
+ Draft three variants:
113
+ 1. Shortest possible (aim for under 35 chars) — strip everything non-essential
114
+ 2. Story angle — actor + action + stakes
115
+ 3. Technical angle — lead with the interesting engineering decision
116
+
117
+ Then apply the length test: count chars on each. Flag any over 60.
118
+
119
+ ---
120
+
121
+ ## Step 4: Decide whether to write a body
122
+
123
+ Ask yourself: does the technical implementation have a detail that cannot fit in
124
+ the title and that HN engineers would find genuinely interesting?
125
+
126
+ If yes: write a body (see Step 5).
127
+ If no: stop at the title. No body is better than a padded body.
128
+
129
+ The data shows bodies do not increase score. The only reason to write one is if
130
+ the implementation is interesting enough that engineers will ask "how does this work?"
131
+ and you want to pre-answer that.
132
+
133
+ ---
134
+
135
+ ## Step 5: Write the body (only if Step 4 said yes)
136
+
137
+ Structure — keep it tight:
138
+
139
+ **Line 1:** One sentence. What you built and why. First person.
140
+ Not "Introducing X." Not "X is a tool that." Just: "I built X because Y."
141
+
142
+ **Lines 2–4:** The real reason. Honest. Specific. Was it a problem you hit yourself?
143
+ Something frustrating at work? A curiosity? "I was annoyed that..." is better than
144
+ "Developers often struggle with...". The builder's voice is the point.
145
+
146
+ **Lines 5–8:** How it actually works. This is what HN reads for.
147
+ Name the specific technology choices. State the tradeoffs you made and why.
148
+ One interesting engineering decision is worth more than a feature list.
149
+
150
+ **Line 9:** Current state in one sentence. Open source? Free? Alpha? Solo?
151
+ How long you've been working on it.
152
+
153
+ **Line 10:** One closing sentence inviting feedback or questions.
154
+ "Happy to answer questions about the implementation." / "Criticism welcome."
155
+ Never ask for upvotes, shares, or sign-ups.
156
+
157
+ Hard rules:
158
+ - 150–300 words. Under 200 is usually better.
159
+ - First person throughout.
160
+ - No bullet points. No headers. No bold.
161
+ - No links in body. URL goes in the submission field.
162
+ - No marketing words: game-changing, revolutionary, powerful, robust, seamless,
163
+ innovative, best-in-class, streamline, leverage, transform, cutting-edge.
164
+
165
+ ---
166
+
167
+ ## Step 6: Self-check before presenting
168
+
169
+ Run through this list. Fix anything that fails before outputting.
170
+
171
+ Title:
172
+ - [ ] Under 60 characters (count them)
173
+ - [ ] No marketing adjectives
174
+ - [ ] Is it a story or a topic? (story = better)
175
+ - [ ] First person if the builder's perspective adds something
176
+ - [ ] No exclamation marks
177
+
178
+ Body (if written):
179
+ - [ ] Opens with "I built…" or "For the past N months…"
180
+ - [ ] Contains at least one specific technology name or architecture decision
181
+ - [ ] Under 300 words
182
+ - [ ] No links
183
+ - [ ] Closes with feedback invitation, not call to action
184
+ - [ ] Zero marketing words (check the list in Step 5)
185
+
186
+ Post type:
187
+ - [ ] If using Show HN prefix: is a plain-title alternative also drafted?
188
+ - [ ] If goal is comments: is it a question or divisive framing?
189
+ - [ ] If goal is score: is it a statement, not a question?
190
+
191
+ ---
192
+
193
+ ## Step 7: Present output
194
+
195
+ Format exactly as follows. No commentary before or after.
196
+
197
+ ```
198
+ ## HN Post
199
+
200
+ ### Recommended title
201
+ [title — the shortest, strongest variant]
202
+
203
+ ### Alternative titles
204
+ 1. [variant 2]
205
+ 2. [variant 3]
206
+
207
+ ---
208
+
209
+ ### Body
210
+ [body text, or "Not recommended — title is sufficient." if Step 4 said no body]
211
+
212
+ ---
213
+
214
+ ### Notes
215
+ - Goal: [score / comments] — based on user's answer in Step 1
216
+ - Post type used: [plain / Show HN / Ask HN / Tell HN]
217
+ - Title length: [N chars]
218
+ - Best time to post: Tuesday–Thursday, 8–10 AM US Eastern
219
+ - After posting: respond to every comment in the first two hours
220
+ - Do not share the link elsewhere for 24 hours — HN penalises vote rings
221
+ ```
222
+
223
+ ---
224
+
225
+ ## Step 8: Optional — scrape current top HN posts for context
226
+
227
+ If the user wants to check whether similar posts have been submitted recently,
228
+ or wants to see what is performing in their category right now, run the scraper:
229
+
230
+ ```python
231
+ import requests
232
+ from concurrent.futures import ThreadPoolExecutor
233
+
234
+ HN_API = "https://hacker-news.firebaseio.com/v0"
235
+
236
+ def fetch_item(id_):
237
+ try:
238
+ r = requests.get(f"{HN_API}/item/{id_}.json", timeout=10)
239
+ return r.json() if r.ok else None
240
+ except Exception:
241
+ return None
242
+
243
+ ids = requests.get(f"{HN_API}/topstories.json").json()[:250]
244
+ with ThreadPoolExecutor(max_workers=20) as ex:
245
+ items = [i for i in ex.map(fetch_item, ids) if i]
246
+
247
+ # Filter by keyword relevant to the user's project
248
+ keyword = "YOUR_KEYWORD_HERE"
249
+ matches = [i for i in items if keyword.lower() in i.get("title","").lower()]
250
+
251
+ for i, item in enumerate(matches, 1):
252
+ score = item.get("score", 0)
253
+ title = item.get("title", "")
254
+ by = item.get("by", "")
255
+ print(f"{i:>2}. [{score:>4}pts] {title} — {by}")
256
+
257
+ print(f"\nTotal matching: {len(matches)}")
258
+ ```
259
+
260
+ Use the results to:
261
+ - Check if a near-identical post was submitted in the last 48 hours (avoid duplication)
262
+ - See which title patterns are landing in this category right now
263
+ - Identify the score floor for this topic area
264
+
265
+ Results are also appended to hn_log.csv automatically if the full scraper is used.
266
+
267
+ ---
268
+
269
+ ## Reference: observed top performers from dataset
270
+
271
+ These are real posts from the top 250. Study the title patterns.
272
+
273
+ Score | Title
274
+ ------|-------
275
+ 1941 | Claude Opus 4.7
276
+ 1688 | Google broke its promise to me – now ICE has my data
277
+ 1244 | Qwen3.6-35B-A3B: Agentic coding power, now open to all
278
+ 1192 | Someone bought 30 WordPress plugins and planted a backdoor in all of them
279
+ 1141 | DaVinci Resolve – Photo
280
+ 990 | Codex for almost everything
281
+ 982 | Stop Flock
282
+ 909 | A new spam policy for "back button hijacking"
283
+ 893 | GitHub Stacked PRs
284
+ 819 | Tell HN: Fiverr left customer files public and searchable
285
+ 668 | I wrote to Flock's privacy contact to opt out of their domestic spying program
286
+ 619 | Measuring Claude 4.7's tokenizer costs
287
+ 561 | God sleeps in the minerals
288
+ 503 | Want to write a compiler? Just read these two papers (2008)
289
+
290
+ Best Show HN titles (by score):
291
+ 341 | Show HN: Smol machines – subsecond coldstart, portable virtual machines
292
+ 199 | Show HN: PanicLock – Close your MacBook lid disable TouchID → password unlock
293
+ 187 | Show HN: Every CEO and CFO change at US public companies, live from SEC
294
+ 177 | Show HN: I made a calculator that works over disjoint sets of intervals
295
+ 152 | Show HN: MacMind – A transformer neural network in HyperCard on a 1989 Macintosh
296
+
297
+ Highest comment-to-score ratios (for discussion-optimised posts):
298
+ 1.91× | Why is IPv6 so complicated?
299
+ 1.43× | Ask HN: Building a solo business is impossible?
300
+ 1.20× | Ohio prison inmates built computers and hid them in ceiling
301
+ 1.13× | Ask HN: Who is using OpenClaw?
302
+ 1.05× | The future of everything is lies, I guess: Where do we go from here?