@opendirectory.dev/skills 0.1.44 → 0.1.46

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.
Files changed (30) hide show
  1. package/package.json +1 -1
  2. package/registry.json +16 -0
  3. package/skills/noise-to-linkedin-carousel/README.md +81 -0
  4. package/skills/noise-to-linkedin-carousel/SKILL.md +53 -0
  5. package/skills/noise-to-linkedin-carousel/cover.png +0 -0
  6. package/skills/noise-to-linkedin-carousel/references/hook-patterns.md +45 -0
  7. package/skills/noise-to-linkedin-carousel/references/output-format.md +59 -0
  8. package/skills/noise-to-linkedin-carousel/references/quality-checklist.md +12 -0
  9. package/skills/noise-to-linkedin-carousel/references/slide-types.md +57 -0
  10. package/skills/oss-launch-kit/.env.example +2 -0
  11. package/skills/oss-launch-kit/PRD.md +122 -0
  12. package/skills/oss-launch-kit/README.md +27 -0
  13. package/skills/oss-launch-kit/SKILL.md +33 -0
  14. package/skills/oss-launch-kit/TECHNICAL_DESIGN.md +187 -0
  15. package/skills/oss-launch-kit/evals/cli-cli.full.md +49 -0
  16. package/skills/oss-launch-kit/evals/evals.json +44 -0
  17. package/skills/oss-launch-kit/evals/octocat-hello-world.full.md +53 -0
  18. package/skills/oss-launch-kit/evals/pydantic-pydantic.full.md +152 -0
  19. package/skills/oss-launch-kit/evals/vercel-next-js.full.md +152 -0
  20. package/skills/oss-launch-kit/hero.png +0 -0
  21. package/skills/oss-launch-kit/references/channel_rules.md +9 -0
  22. package/skills/oss-launch-kit/references/launch_framework.md +10 -0
  23. package/skills/oss-launch-kit/references/output_template.md +3 -0
  24. package/skills/oss-launch-kit/scripts/__pycache__/build_product_brief.cpython-313.pyc +0 -0
  25. package/skills/oss-launch-kit/scripts/__pycache__/generate_assets.cpython-313.pyc +0 -0
  26. package/skills/oss-launch-kit/scripts/build_product_brief.py +335 -0
  27. package/skills/oss-launch-kit/scripts/fetch_repo_context.py +169 -0
  28. package/skills/oss-launch-kit/scripts/generate_assets.py +526 -0
  29. package/skills/oss-launch-kit/scripts/run.py +41 -0
  30. package/skills/oss-launch-kit/scripts/test_logic.py +99 -0
@@ -0,0 +1,187 @@
1
+ # oss-launch-kit Technical Design
2
+
3
+ ## Architecture Summary
4
+ `oss-launch-kit` should follow the same advanced-skill pattern used elsewhere in this repo:
5
+ - `README.md` for public overview and usage
6
+ - `SKILL.md` for operational instructions
7
+ - `.env.example` for required environment variables
8
+ - `scripts/` for executable orchestration
9
+ - `references/` for design guides, templates, and frameworks (note: these are for design-time reference, the current scripts use hardcoded templates for maximum performance and stability).
10
+ - `evals/` for validation cases
11
+
12
+ The implementation should be a two-stage pipeline:
13
+
14
+ 1. repo context -> structured product brief
15
+ 2. product brief -> channel-specific launch assets
16
+
17
+ This mirrors the repo’s stronger launch skills and keeps the generation grounded.
18
+
19
+ ## Stage A: Repo Context -> Product Brief
20
+ ### Responsibility
21
+ Convert raw GitHub repo data into a normalized brief that captures only what can be supported by evidence.
22
+
23
+ ### Inputs
24
+ - repo metadata JSON
25
+ - README text
26
+ - optional release metadata
27
+
28
+ ### Output schema
29
+ ```json
30
+ {
31
+ "repo_name": "string",
32
+ "one_line_summary": "string",
33
+ "project_type": "string",
34
+ "launch_readiness": {
35
+ "score": "low | medium | high",
36
+ "signals": "object",
37
+ "fix_plan": "list"
38
+ },
39
+ "audience": "string",
40
+ "problem_solved": "string",
41
+ "value_proposition": "string",
42
+ "key_proof_points": "list",
43
+ "key_features": "list",
44
+ "links": "object",
45
+ "confidence": "low | medium | high",
46
+ "assumptions": "list",
47
+ "channel_fitness": "object"
48
+ }
49
+ ```
50
+
51
+ ### Failure cases
52
+ - README is sparse or missing.
53
+ - Repo description conflicts with README.
54
+ - Audience is implied, not explicit.
55
+
56
+ ### Hallucination controls
57
+ - Treat README and repo metadata as the only factual source.
58
+ - Allow `unknown` or empty values when evidence is missing.
59
+ - Store evidence alongside every major inference.
60
+
61
+ ## Stage B: Product Brief -> Launch Assets
62
+ ### Responsibility
63
+ Use the brief to generate channel-specific drafts with channel rules applied.
64
+
65
+ ### Inputs
66
+ - product brief JSON
67
+ - channel rules from `references/channel_rules.md`
68
+ - output template from `references/output_template.md`
69
+
70
+ ### Output
71
+ - final Markdown launch kit
72
+
73
+ ### Failure cases
74
+ - assets become generic
75
+ - channel tone drifts away from platform norms
76
+ - unsupported claims leak into drafts
77
+
78
+ ### Hallucination controls
79
+ - no new facts beyond the brief
80
+ - confidence notes carry through to final output
81
+ - use explicit `[!TIP]` handoffs to specialized skills
82
+ - suppress aggressive channels for unready repos
83
+
84
+ ## Channel Rules
85
+ ### Show HN
86
+ - direct and technical
87
+ - no hype language
88
+ - no fake performance claims
89
+ - plain title alternative only if useful
90
+
91
+ ### Product Hunt
92
+ - include tagline and description
93
+ - maker comment should sound human and specific
94
+ - avoid invented social proof
95
+ - do not exceed practical PH length constraints
96
+
97
+ ### Reddit
98
+ - generate niche suggestions based on repo tags and description
99
+ - include a warning to verify subreddit rules before posting
100
+ - prioritize feedback-first communities for early-stage repos
101
+
102
+ ### Twitter/X
103
+ - concise thread
104
+ - each tweet should carry one idea
105
+ - use evidence-based language only
106
+ - no spammy hashtags
107
+
108
+ ## File Structure
109
+ ```text
110
+ skills/oss-launch-kit/
111
+ ├── README.md
112
+ ├── SKILL.md
113
+ ├── .env.example
114
+ ├── PRD.md
115
+ ├── TECHNICAL_DESIGN.md
116
+ ├── evals/
117
+ │ └── evals.json
118
+ ├── references/
119
+ │ ├── launch_framework.md
120
+ │ ├── channel_rules.md
121
+ │ └── output_template.md
122
+ └── scripts/
123
+ ├── run.py
124
+ ├── fetch_repo_context.py
125
+ ├── build_product_brief.py
126
+ └── generate_assets.py
127
+ ```
128
+
129
+ ## Implementation Phases
130
+ ### Phase 1: Skeleton and docs
131
+ - Create folder structure and planning docs.
132
+ - Acceptance: skill folder exists with PRD, technical design, and reference stubs.
133
+ - Risk: too much upfront design before validation.
134
+
135
+ ### Phase 2: GitHub fetcher
136
+ - Implement repo URL parsing and GitHub API fetches.
137
+ - Acceptance: metadata and README resolve for public repos.
138
+ - Risk: API rate limits and README format variance.
139
+
140
+ ### Phase 3: Brief builder
141
+ - Turn repo context into structured brief JSON.
142
+ - Acceptance: evidence-backed fields and explicit confidence notes.
143
+ - Risk: over-inference from weak READMEs.
144
+
145
+ ### Phase 4: Asset generation
146
+ - Produce final channel drafts from the brief.
147
+ - Acceptance: all outputs obey channel rules and remain grounded.
148
+ - Risk: repetitive or generic copy.
149
+
150
+ ### Phase 5: Testing on 3 public repos
151
+ - Test on a dev tool repo, a library/package repo, and a weak README repo.
152
+ - Acceptance: all three produce usable outputs with honest low-confidence handling.
153
+ - Risk: one-size-fits-all messaging.
154
+
155
+ ### Phase 6: README polish and PR prep
156
+ - Align README with final behavior and usage.
157
+ - Acceptance: maintainer can review quickly and see the merge value.
158
+
159
+ ## Testing Strategy
160
+ ### Test set
161
+ - one dev-tool repo with strong README
162
+ - one library/package repo with clear positioning
163
+ - one repo with a weak README
164
+
165
+ ### Good output means
166
+ - factual repo summary
167
+ - specific audience and problem framing
168
+ - channel-appropriate tone
169
+ - no fabricated proof points
170
+ - explicit assumptions where evidence is thin
171
+
172
+ ## Risks and Mitigations
173
+ - Weak README: keep output short, honest, and confidence-tagged.
174
+ - Misleading repo description: prefer README over description.
175
+ - Unclear audience: provide one primary hypothesis and note ambiguity.
176
+ - Generic launch copy: require evidence fields before drafting assets.
177
+ - Wrong subreddit suggestions: mark them as suggestions, not endorsements.
178
+ - Hallucinated claims: final validation pass checks every claim against brief evidence.
179
+
180
+ ## PR Plan
181
+ - Branch: `skill/oss-launch-kit`
182
+ - PR title: `feat(skill): add oss-launch-kit`
183
+ - Commit sequence:
184
+ - `docs(skill): add oss-launch-kit prd and technical design`
185
+ - `docs(skill): add oss-launch-kit reference docs and scaffold`
186
+ - `feat(skill): implement repo context fetcher`
187
+ - `feat(skill): implement brief builder and launch asset generation`
@@ -0,0 +1,49 @@
1
+ # Launch Orchestrator for cli/cli
2
+
3
+
4
+
5
+ ## Executive Summary & Launch Readiness
6
+
7
+ **Project Maturity**: HIGH
8
+
9
+
10
+
11
+ ## Coordinated Launch Timeline
12
+
13
+ - [ ] Day 1: Show HN
14
+ - [ ] Day 3: Reddit
15
+ - [ ] Day 5: Product Hunt
16
+
17
+
18
+
19
+ This is identified as a **tool** with **High Launch Readiness**.
20
+ - **Show HN**: High fit. Technical communities appreciate technical tools and libraries.
21
+ - **Product Hunt**: Not recommended yet. Pure libraries or early-stage tools often struggle on PH without a UI/Demo.
22
+
23
+
24
+
25
+ ## Channel Strategy & Positioning
26
+ ### [Show HN] - Fit: HIGH
27
+ **Positioning**: Focus on technical implementation and 'why I built this'.
28
+ **Recommended Title**: `Show HN: cli/cli - GitHub’s official command line tool`
29
+ **Hook**: I built cli/cli because I wanted a clearer way to serve data/infra users who need github’s official command line tool.
30
+ > [!TIP]
31
+ > Use `show-hn-writer` for a full submission draft.
32
+
33
+ ### [Reddit] - Fit: MEDIUM
34
+ **Niche Strategy**: Engage r/devtools, r/opensource, r/commandline with feedback-first posts.
35
+ **Key Hook**: GitHub’s official command line tool
36
+ > [!TIP]
37
+ > Use `reddit-post-engine` to generate subreddit-specific variants.
38
+
39
+ ### [Twitter/X] - Fit: HIGH
40
+ **Thread Strategy**: Start with the problem of GitHub’s official command line tool.
41
+ **Hook**: I built `cli/cli` to solve github’s official command line tool.
42
+ > [!TIP]
43
+ > Use `tweet-thread-from-blog` or `linkedin-post-generator` to expand this hook.
44
+
45
+
46
+
47
+ ## Full Confidence Notes & Assumptions
48
+
49
+ - Confidence: high
@@ -0,0 +1,44 @@
1
+ [
2
+ {
3
+ "repo": "cli/cli",
4
+ "full": "cli-cli.full.md",
5
+ "description": "Strong CLI tool",
6
+ "expectations": [
7
+ "**Project Maturity**: HIGH",
8
+ "Show HN fitness is HIGH",
9
+ "Includes Channel Strategy & Positioning section",
10
+ "Timeline includes Show HN"
11
+ ]
12
+ },
13
+ {
14
+ "repo": "octocat/Hello-World",
15
+ "full": "octocat-hello-world.full.md",
16
+ "description": "Weak project",
17
+ "expectations": [
18
+ "**Project Maturity**: LOW",
19
+ "> [!CAUTION]",
20
+ "This project is not launch-ready yet",
21
+ "Show HN and Product Hunt are NOT recommended",
22
+ "Channel Strategy & Positioning section is absent",
23
+ "Coordinated Launch Timeline is absent"
24
+ ]
25
+ },
26
+ {
27
+ "repo": "pydantic/pydantic",
28
+ "full": "pydantic-pydantic.full.md",
29
+ "description": "Mature library",
30
+ "expectations": [
31
+ "**Project Maturity**: HIGH",
32
+ "Show HN fitness is HIGH"
33
+ ]
34
+ },
35
+ {
36
+ "repo": "vercel/next.js",
37
+ "full": "vercel-next-js.full.md",
38
+ "description": "Polished framework",
39
+ "expectations": [
40
+ "**Project Maturity**: HIGH",
41
+ "Product Hunt fitness is HIGH"
42
+ ]
43
+ }
44
+ ]
@@ -0,0 +1,53 @@
1
+ # Launch Orchestrator for octocat/Hello-World
2
+
3
+
4
+
5
+ ## Executive Summary & Launch Readiness
6
+
7
+ **Project Maturity**: LOW
8
+
9
+
10
+ > [!WARNING]
11
+
12
+ > **Launch Readiness is Low.** This project currently looks like a toy or template repo.
13
+
14
+ > Recommended next steps: improve README, add installation examples, and fix core metadata.
15
+
16
+
17
+
18
+ - Confidence: low
19
+ - Assumptions: Audience inferred from repo metadata only.; No clear installation instructions found in README
20
+ Edit before posting: this repo context is sparse, so tighten the copy after reviewing the README and repo signals.
21
+
22
+
23
+
24
+ ## Coordinated Launch Timeline
25
+
26
+ - [ ] Day 1-3: Documentation Sprint (Fix README, add examples)
27
+ - [ ] Day 4: Ask for feedback on Reddit (r/opensource or relevant niche)
28
+ - [ ] Day 5: Soft launch on Twitter/X to gathered followers
29
+ - [ ] Day 7+: Re-evaluate for Show HN/PH once README is robust
30
+
31
+
32
+
33
+ This is identified as a **project** with **Low Launch Readiness**.
34
+ - **Show HN**: Not recommended yet. Repository context might be too thin for Hacker News.
35
+ - **Product Hunt**: Not recommended yet. Pure libraries or early-stage tools often struggle on PH without a UI/Demo.
36
+ - **Reddit**: OK for feedback only. Avoid a 'launch' post; ask for specific technical reviews instead.
37
+
38
+
39
+
40
+ ## Channel Strategy & Positioning
41
+ ### [Twitter/X] - Fit: HIGH
42
+ **Thread Strategy**: Start with the problem of My first repository on GitHub!.
43
+ **Hook**: I built `octocat/Hello-World` to solve my first repository on github!.
44
+ > [!TIP]
45
+ > Use `tweet-thread-from-blog` or `linkedin-post-generator` to expand this hook.
46
+
47
+
48
+
49
+ ## Full Confidence Notes & Assumptions
50
+
51
+ - Confidence: low
52
+ - Assumptions: Audience inferred from repo metadata only.; No clear installation instructions found in README
53
+ Edit before posting: this repo context is sparse, so tighten the copy after reviewing the README and repo signals.
@@ -0,0 +1,152 @@
1
+ # Launch Kit
2
+
3
+ ## Repo Summary
4
+ pydantic/pydantic
5
+
6
+ ## Audience
7
+ end users
8
+
9
+ ## Description
10
+ Data validation using Python type hints
11
+
12
+ # Show HN Draft
13
+
14
+ ## Title
15
+ Show HN: pydantic/pydantic - Data validation using Python type hints
16
+
17
+ ## Short Intro
18
+ Low-confidence repo context. Title-only draft recommended.
19
+
20
+ ## Core Explanation
21
+ Not enough README signal to write a reliable body.
22
+
23
+ ## Feedback Ask
24
+ Please review the repo framing and README quality before posting.
25
+
26
+ ## Notes
27
+ - Confidence: high
28
+
29
+ # Product Hunt Draft
30
+
31
+ ## Tagline
32
+ pydantic/pydantic: open-source project for end users
33
+
34
+ ## Description
35
+ Built for end users. Keeps the pitch grounded in repo facts.
36
+
37
+ ## Maker Comment
38
+ Draft only. Edit before posting.
39
+
40
+ ## Notes
41
+ - Confidence: high
42
+
43
+ # Reddit Drafts
44
+
45
+ ## Variant 1
46
+ Subreddit: r/SideProject (general maker context)
47
+
48
+ I built pydantic/pydantic for end users because data validation using python type hints.
49
+
50
+ This is a fit for general maker context; I’m sharing it here to get feedback, not to spam the subreddit.
51
+
52
+ It focuses on the repo metadata and README.
53
+
54
+ I built this myself and will only post where the subreddit rules allow self-promo.
55
+
56
+ If this fits the community, I’d appreciate feedback on the launch angle and any missing context.
57
+
58
+ ## Variant 2
59
+ Subreddit: r/opensource (open-source launch context)
60
+
61
+ I built pydantic/pydantic for end users because data validation using python type hints and I think the interesting part is the launch workflow, not the code itself.
62
+
63
+ I’m posting in open-source launch context because it’s an OSS launch question first and a product post second.
64
+
65
+ The repo signals I leaned on were README text and metadata.
66
+
67
+ I built this myself and will only post where the subreddit rules allow self-promo.
68
+
69
+ Curious whether this framing would land with open-source launch context.
70
+
71
+ ## Variant 3
72
+ Subreddit: r/programming (developer audience)
73
+
74
+ I built pydantic/pydantic for end users because data validation using python type hints, and the challenge was keeping the launch copy specific without turning it into jargon.
75
+
76
+ For developer audience, I’d mainly want feedback on whether the problem/solution framing is actually useful to builders.
77
+
78
+ The repo cues I used were Data validation using Python type hints and README details.
79
+
80
+ I built this myself and will only post where the subreddit rules allow self-promo.
81
+
82
+ Would this problem/solution framing feel useful to builders in developer audience?
83
+
84
+ ## Variant 4
85
+ Subreddit: r/devtools (developer tools audience)
86
+
87
+ I built pydantic/pydantic for end users because data validation using python type hints and I wanted a cleaner way to turn repo facts into launch copy.
88
+
89
+ This angle fits developer tools audience; I’m sharing it for feedback on the workflow, not as a promo blast.
90
+
91
+ The main angle here is Data validation using Python type hints, with README details as supporting context.
92
+
93
+ I built this myself and will only post where the subreddit rules allow self-promo.
94
+
95
+ Would this problem/solution framing feel useful to builders in developer tools audience?
96
+
97
+ ## Variant 5
98
+ Subreddit: r/commandline (command-line users)
99
+
100
+ I built pydantic/pydantic for end users because data validation using python type hints.
101
+
102
+ This is a fit for command-line users; I’m sharing it here to get feedback, not to spam the subreddit.
103
+
104
+ It focuses on the repo metadata and README.
105
+
106
+ I built this myself and will only post where the subreddit rules allow self-promo.
107
+
108
+ If this fits the community, I’d appreciate feedback on the launch angle and any missing context.
109
+
110
+ ## Notes
111
+ - Confidence: high
112
+
113
+ # Twitter/X Thread
114
+
115
+ ## Tweet 1
116
+ The launch story for pydantic/pydantic should start with data validation using python type hints, not the implementation details.
117
+
118
+ ## Tweet 2
119
+ The hard part isn’t the code; it’s explaining why data validation using python type hints matters to the right audience.
120
+
121
+ ## Tweet 3
122
+ This kit turns the repo’s own signals into a tighter launch story without inventing traction.
123
+
124
+ ## Tweet 4
125
+ It reads the README + GitHub metadata, then drafts Show HN, Product Hunt, Reddit, and X posts that stay close to the repo. The supporting detail I’d foreground is readme and metadata.
126
+
127
+ ## Tweet 5
128
+ Feedback welcome on the repo angle: add the repo link before posting
129
+
130
+ ## Notes
131
+ - Confidence: high
132
+
133
+ # First-Week Launch Plan
134
+
135
+ ## Day 0
136
+ Prep the launch copy, verify links, and trim anything that sounds generic for pydantic/pydantic before posting.
137
+
138
+ ## Launch day
139
+ Post the Show HN draft, Product Hunt draft, 5 Reddit variants, and the X thread. Keep replies factual and point people to the repo.
140
+
141
+ ## Day 1-2
142
+ Respond to feedback, update the README if commenters point out missing context, and tighten the launch framing around data validation using python type hints for end users.
143
+
144
+ ## Day 3-7
145
+ Publish a short follow-up post or changelog note, answer questions in communities where you posted, and reuse useful feedback to improve docs, examples, or onboarding.
146
+
147
+ ## Notes
148
+ - Confidence: high
149
+
150
+ # Assumptions / Low-Confidence Notes
151
+
152
+ - Confidence: high
@@ -0,0 +1,152 @@
1
+ # Launch Kit
2
+
3
+ ## Repo Summary
4
+ vercel/next.js
5
+
6
+ ## Audience
7
+ authors and maintainers
8
+
9
+ ## Description
10
+ The React Framework
11
+
12
+ # Show HN Draft
13
+
14
+ ## Title
15
+ Show HN: vercel/next.js - The React Framework
16
+
17
+ ## Short Intro
18
+ Low-confidence repo context. Title-only draft recommended.
19
+
20
+ ## Core Explanation
21
+ Not enough README signal to write a reliable body.
22
+
23
+ ## Feedback Ask
24
+ Please review the repo framing and README quality before posting.
25
+
26
+ ## Notes
27
+ - Confidence: high
28
+
29
+ # Product Hunt Draft
30
+
31
+ ## Tagline
32
+ vercel/next.js: framework for authors and maintainers
33
+
34
+ ## Description
35
+ Built for authors and maintainers. Keeps the pitch grounded in repo facts.
36
+
37
+ ## Maker Comment
38
+ Draft only. Edit before posting.
39
+
40
+ ## Notes
41
+ - Confidence: high
42
+
43
+ # Reddit Drafts
44
+
45
+ ## Variant 1
46
+ Subreddit: r/SideProject (general maker context)
47
+
48
+ I built vercel/next.js for authors and maintainers because the react framework.
49
+
50
+ This is a fit for general maker context; I’m sharing it here to get feedback, not to spam the subreddit.
51
+
52
+ It focuses on the repo metadata and README.
53
+
54
+ I built this myself and will only post where the subreddit rules allow self-promo.
55
+
56
+ If this fits the community, I’d appreciate feedback on the launch angle and any missing context.
57
+
58
+ ## Variant 2
59
+ Subreddit: r/opensource (open-source launch context)
60
+
61
+ I built vercel/next.js for authors and maintainers because the react framework and I think the interesting part is the launch workflow, not the code itself.
62
+
63
+ I’m posting in open-source launch context because it’s an OSS launch question first and a product post second.
64
+
65
+ The repo signals I leaned on were README text and metadata.
66
+
67
+ I built this myself and will only post where the subreddit rules allow self-promo.
68
+
69
+ Curious whether this framing would land with open-source launch context.
70
+
71
+ ## Variant 3
72
+ Subreddit: r/programming (developer audience)
73
+
74
+ I built vercel/next.js for authors and maintainers because the react framework, and the challenge was keeping the launch copy specific without turning it into jargon.
75
+
76
+ For developer audience, I’d mainly want feedback on whether the problem/solution framing is actually useful to builders.
77
+
78
+ The repo cues I used were The React Framework and README details.
79
+
80
+ I built this myself and will only post where the subreddit rules allow self-promo.
81
+
82
+ Would this problem/solution framing feel useful to builders in developer audience?
83
+
84
+ ## Variant 4
85
+ Subreddit: r/devtools (developer tools audience)
86
+
87
+ I built vercel/next.js for authors and maintainers because the react framework and I wanted a cleaner way to turn repo facts into launch copy.
88
+
89
+ This angle fits developer tools audience; I’m sharing it for feedback on the workflow, not as a promo blast.
90
+
91
+ The main angle here is The React Framework, with README details as supporting context.
92
+
93
+ I built this myself and will only post where the subreddit rules allow self-promo.
94
+
95
+ Would this problem/solution framing feel useful to builders in developer tools audience?
96
+
97
+ ## Variant 5
98
+ Subreddit: r/commandline (command-line users)
99
+
100
+ I built vercel/next.js for authors and maintainers because the react framework.
101
+
102
+ This is a fit for command-line users; I’m sharing it here to get feedback, not to spam the subreddit.
103
+
104
+ It focuses on the repo metadata and README.
105
+
106
+ I built this myself and will only post where the subreddit rules allow self-promo.
107
+
108
+ If this fits the community, I’d appreciate feedback on the launch angle and any missing context.
109
+
110
+ ## Notes
111
+ - Confidence: high
112
+
113
+ # Twitter/X Thread
114
+
115
+ ## Tweet 1
116
+ The launch story for vercel/next.js should start with the react framework, not the implementation details.
117
+
118
+ ## Tweet 2
119
+ The hard part isn’t the code; it’s explaining why the react framework matters to the right audience.
120
+
121
+ ## Tweet 3
122
+ This kit turns the repo’s own signals into a tighter launch story without inventing traction.
123
+
124
+ ## Tweet 4
125
+ It reads the README + GitHub metadata, then drafts Show HN, Product Hunt, Reddit, and X posts that stay close to the repo. The supporting detail I’d foreground is readme and metadata.
126
+
127
+ ## Tweet 5
128
+ Feedback welcome on the repo angle: add the repo link before posting
129
+
130
+ ## Notes
131
+ - Confidence: high
132
+
133
+ # First-Week Launch Plan
134
+
135
+ ## Day 0
136
+ Prep the launch copy, verify links, and trim anything that sounds generic for vercel/next.js before posting.
137
+
138
+ ## Launch day
139
+ Post the Show HN draft, Product Hunt draft, 5 Reddit variants, and the X thread. Keep replies factual and point people to the repo.
140
+
141
+ ## Day 1-2
142
+ Respond to feedback, update the README if commenters point out missing context, and tighten the launch framing around the react framework for authors and maintainers.
143
+
144
+ ## Day 3-7
145
+ Publish a short follow-up post or changelog note, answer questions in communities where you posted, and reuse useful feedback to improve docs, examples, or onboarding.
146
+
147
+ ## Notes
148
+ - Confidence: high
149
+
150
+ # Assumptions / Low-Confidence Notes
151
+
152
+ - Confidence: high
Binary file
@@ -0,0 +1,9 @@
1
+ # Channel Rules
2
+
3
+ This file will hold the operational constraints for each launch channel.
4
+
5
+ Planned channels:
6
+ - Show HN
7
+ - Product Hunt
8
+ - Reddit
9
+ - Twitter/X
@@ -0,0 +1,10 @@
1
+ # Launch Framework
2
+
3
+ This file will hold the canonical launch brief structure for `oss-launch-kit`.
4
+
5
+ Planned sections:
6
+ - repo summary
7
+ - audience and problem framing
8
+ - evidence inventory
9
+ - launch angle
10
+ - channel notes
@@ -0,0 +1,3 @@
1
+ # Output Template
2
+
3
+ This file will define the final Markdown layout for the generated launch kit.