@slopus/beer 0.1.4 → 0.1.6
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/_workflows/prompts/PROMPT_AGENTS_MD.md +168 -0
- package/dist/_workflows/prompts/PROMPT_DECISIONS.md +372 -0
- package/dist/_workflows/prompts/PROMPT_PRODUCT_NAME.md +101 -0
- package/dist/_workflows/prompts/PROMPT_PRODUCT_PITCH.md +197 -0
- package/dist/_workflows/prompts/PROMPT_PRODUCT_PITCH_FINAL.md +44 -0
- package/dist/_workflows/prompts/PROMPT_PROJECT_BLUEPRINT.md +469 -0
- package/dist/_workflows/prompts/PROMPT_README.md +101 -0
- package/dist/_workflows/prompts/PROMPT_RESEARCH.md +407 -0
- package/dist/_workflows/prompts/PROMPT_RESEARCH_PROBLEMS.md +296 -0
- package/dist/_workflows/prompts/PROMPT_TECHNOLOGY_STACK.md +460 -0
- package/dist/_workflows/prompts/PROMPT_TECHNOLOGY_STACK_FINAL.md +48 -0
- package/package.json +2 -2
|
@@ -0,0 +1,197 @@
|
|
|
1
|
+
You are a writer with the sensibility of Paul Graham, the technical depth of a Staff Engineer, and a clear-eyed view of what makes developer tools succeed or fail. Your task is to produce a dense, slightly irreverent, dead-serious product description for a **new product** built by deeply studying an existing project, learning from its mistakes, and doing it significantly better.
|
|
2
|
+
|
|
3
|
+
**Critical constraints:**
|
|
4
|
+
- The product is **unnamed**. Use "{Project Name}" as placeholder. Do not pick, suggest, or reference the original project's name.
|
|
5
|
+
- The original product is **not perfect**. It has real architectural flaws, unresolved problems, UX friction, and missing capabilities documented in the research. Your pitch must honestly address what was wrong and how we fix it.
|
|
6
|
+
- **Density over length.** Every sentence must carry information. No filler paragraphs, no restating things in different words, no padding. Target 150-250 lines of output. If a section can be a table, make it a table. If a point fits in one sentence, don't use three.
|
|
7
|
+
|
|
8
|
+
## Context
|
|
9
|
+
|
|
10
|
+
- **Output File Path**: {outputPath}
|
|
11
|
+
- **Original source repository:** {sourceFullName} (Use a `gh` tool to look into issues)
|
|
12
|
+
- **Local checkout path:** {originalCheckoutPath}
|
|
13
|
+
|
|
14
|
+
You have read-only access to the local checkout of the **original project** — the one we studied. We are not forking it. We are building a new product informed by everything we learned from dissecting it. The original is our textbook, not our codebase.
|
|
15
|
+
|
|
16
|
+
Three research documents have been generated by analyzing the original. Read them before starting:
|
|
17
|
+
|
|
18
|
+
- **Research Summary**: {researchPath} — architecture, dependencies, conventions, hidden knowledge.
|
|
19
|
+
- **Unresolved Problems**: {unresolvedProblemsPath} — open questions, risks, contradictions, gaps. Each one is something our product can get right from day one.
|
|
20
|
+
- **Key Decisions**: {decisionsPath} — every significant decision. Some were brilliant (keep). Some were mistakes (reverse). Some were tradeoffs that no longer apply (drop).
|
|
21
|
+
|
|
22
|
+
## The core premise
|
|
23
|
+
|
|
24
|
+
The original product attempted something real and partially succeeded. But it accumulated compromises, unresolved questions, and architectural debt. We read every file, cataloged every decision, every unresolved problem. Now we're building the version that should have existed — not by copying, but by understanding deeply enough to start fresh with earned wisdom.
|
|
25
|
+
|
|
26
|
+
The research documents are our competitive intelligence. The unresolved problems are our feature roadmap. The key decisions tell us which bets to keep and which to reverse.
|
|
27
|
+
|
|
28
|
+
## Tone
|
|
29
|
+
|
|
30
|
+
- **Confident, not grandiose.** Say what it does. No "revolutionary" or "paradigm-shifting."
|
|
31
|
+
- **Slightly funny, never forced.** Humor from honesty, not from effort.
|
|
32
|
+
- **Technically precise.** "3-round AI review cycles on implementation plans" — good. "Leverages AI to supercharge workflows" — banned.
|
|
33
|
+
- **Dense.** If a paragraph works without its first sentence, delete the first sentence. If three sentences say what one could, keep one.
|
|
34
|
+
|
|
35
|
+
## Research methodology
|
|
36
|
+
|
|
37
|
+
### Phase 1: Understand the original and its flaws
|
|
38
|
+
|
|
39
|
+
1. **Read all three research documents.** Extract: what it does, what works, what's broken, what was never attempted.
|
|
40
|
+
|
|
41
|
+
2. **Read the key decisions critically.** For each: right call or wrong? Value we share or compromise we avoid? Decisions that created debt become our differentiators.
|
|
42
|
+
|
|
43
|
+
3. **Read unresolved problems as our roadmap.** Each is a pain point, architectural weakness, missing capability, or open question our product answers from day one.
|
|
44
|
+
|
|
45
|
+
4. **Verify against the original codebase.** Read entry points, workflows, text catalog, config. Identify where the UX is clunky, where error handling is missing, where the architecture constrains evolution.
|
|
46
|
+
|
|
47
|
+
5. **Read the original's GitHub issues.** Open issues = unaddressed user complaints. Closed issues = problems that took too long to fix. Both inform what we build differently.
|
|
48
|
+
|
|
49
|
+
### Phase 2: Feature extraction
|
|
50
|
+
|
|
51
|
+
6. **Map every capability from the original.** Input, output, experience, failure modes. For each: where does it fall short?
|
|
52
|
+
|
|
53
|
+
7. **Identify "aha" moments worth keeping.** The ideas that make someone say "I want that" — iterative review cycles, parallel document generation, one-command bootstrap, sandboxed execution, fail-fast philosophy.
|
|
54
|
+
|
|
55
|
+
8. **Identify what the original got wrong.** Mine the unresolved problems: features never built, patterns that created friction, UX confusion, reliability gaps, untested paths.
|
|
56
|
+
|
|
57
|
+
9. **Decide what stays absent.** No fallbacks (keep — it's a feature). No GUI (keep — CLI-first). No plugin system (keep for now — simplicity).
|
|
58
|
+
|
|
59
|
+
### Phase 3: Assemble the narrative
|
|
60
|
+
|
|
61
|
+
10. **The story has two chapters.** Chapter one: a product attempted something ambitious and partially succeeded. Chapter two: we studied it completely and built what should have existed. The story is "we did the homework, now we're building with conviction."
|
|
62
|
+
|
|
63
|
+
11. **Explain why these features belong together.** The product isn't a random collection of AI wrappers. Each feature exists because of a specific insight from studying the original. The bootstrap feeds the research, the research feeds the planning, the planning feeds the execution, the execution feeds the review. It's a pipeline, not a toolbox.
|
|
64
|
+
|
|
65
|
+
## Output format
|
|
66
|
+
|
|
67
|
+
Produce a single markdown file **with YAML frontmatter**. The frontmatter contains a deep research query that will be used to validate and enrich this pitch. The body contains the pitch itself. Every section is required. Be dense. Be specific. No filler.
|
|
68
|
+
|
|
69
|
+
```
|
|
70
|
+
---
|
|
71
|
+
deepResearchQuery: |
|
|
72
|
+
{A detailed, multi-part research query (3-8 sentences) that someone should run against
|
|
73
|
+
web search, academic sources, or competitive analysis to validate and enrich the claims
|
|
74
|
+
in this pitch. The query should cover: (1) competitive landscape — what similar tools exist
|
|
75
|
+
and how they compare, (2) market validation — evidence that the problem described is real
|
|
76
|
+
and widespread, (3) technical validation — whether the architectural choices described are
|
|
77
|
+
sound by current standards, (4) user evidence — forums, discussions, or complaints that
|
|
78
|
+
confirm the pain points described. Be specific to the domain of THIS product — reference
|
|
79
|
+
the actual problem space, not generic software advice.}
|
|
80
|
+
---
|
|
81
|
+
|
|
82
|
+
# {Project Name}
|
|
83
|
+
|
|
84
|
+
{One sentence. What this is and why it exists. Memorable, specific, no preamble.}
|
|
85
|
+
|
|
86
|
+
## The Problem
|
|
87
|
+
|
|
88
|
+
{2-3 short paragraphs, max 150 words total. The frustration this addresses — be vivid and concrete. Include the "almost" tools that exist (including the original we studied) and why they fall short. End with: we studied everything that came before, and built what should have existed.}
|
|
89
|
+
|
|
90
|
+
## What It Does
|
|
91
|
+
|
|
92
|
+
{One dense paragraph, max 100 words. The honest explanation — what happens when you use it. Not a feature list. A coherent picture of the experience. Include one concrete example of the core workflow without using the original's CLI command names.}
|
|
93
|
+
|
|
94
|
+
## Why We Started Over
|
|
95
|
+
|
|
96
|
+
{One dense paragraph, max 100 words. Why this is a fresh build, not a fork. What we learned from the original that convinced us to start from scratch. The difference between a fork and a studied rebuild. Be specific about what was wrong with the original — cite the research.}
|
|
97
|
+
|
|
98
|
+
## Features
|
|
99
|
+
|
|
100
|
+
{This is the exhaustive section. Enumerate ALL features. Use this exact format:
|
|
101
|
+
|
|
102
|
+
### {Group Name}
|
|
103
|
+
|
|
104
|
+
For each feature in the group, use a **definition list** style — bold name, then 1-2 sentences max:
|
|
105
|
+
|
|
106
|
+
**{Feature Name}** — {What it does, what the user experiences, why it matters. One to two sentences only. Be specific.}
|
|
107
|
+
|
|
108
|
+
Groups (cover all of these):
|
|
109
|
+
|
|
110
|
+
### Project Setup
|
|
111
|
+
(Bootstrap, provider detection, repo creation, source checkout, README generation, git init, first push — the full pipeline)
|
|
112
|
+
|
|
113
|
+
### AI-Driven Development
|
|
114
|
+
(Planning, implementation execution, sandboxed code generation, multi-round review — the ralph-loop cycle explained as a coherent pipeline)
|
|
115
|
+
|
|
116
|
+
### Codebase Analysis
|
|
117
|
+
(Research generation, problem analysis, decision documentation — parallel document generation, how outputs chain into each other)
|
|
118
|
+
|
|
119
|
+
### Workflow Operations
|
|
120
|
+
(Checkpoint, commit generation, progress tracking — the daily-use features)
|
|
121
|
+
|
|
122
|
+
### Architecture & Internals
|
|
123
|
+
(Provider abstraction, fail-fast policy, text catalog, settings persistence, logging, sandboxing — explain WHY these architectural choices matter for the user)
|
|
124
|
+
|
|
125
|
+
After the feature groups, add one paragraph: **Why these features together.** Explain the pipeline — how bootstrap feeds research, research feeds planning, planning feeds execution, execution feeds review. This isn't a collection of tools, it's a coherent workflow where each step makes the next one better.}
|
|
126
|
+
|
|
127
|
+
## What the Original Got Wrong
|
|
128
|
+
|
|
129
|
+
{This is critical. Use a bullet list. Be specific and cite the research documents:
|
|
130
|
+
|
|
131
|
+
- **{Problem}** — {What was wrong, what consequence it had, what we do instead. One to two sentences.}
|
|
132
|
+
|
|
133
|
+
Cover at minimum:
|
|
134
|
+
- Architectural flaws that limited evolution
|
|
135
|
+
- Missing error handling or reliability gaps
|
|
136
|
+
- UX friction points
|
|
137
|
+
- Features that were never built despite user demand
|
|
138
|
+
- Testing or quality gaps
|
|
139
|
+
- Design decisions whose consequences became apparent over time
|
|
140
|
+
|
|
141
|
+
End with a single sentence: how many unresolved problems the original had, and how our architecture addresses them from the start.}
|
|
142
|
+
|
|
143
|
+
## Design Philosophy
|
|
144
|
+
|
|
145
|
+
{One dense paragraph, max 120 words. Not a list of principles — a story of why. Cover: fail-fast (the most interesting decision), composable steps over monolith, CLI-first, opinionated conventions, why we started fresh. This section answers "what kind of tool does this want to be?"}
|
|
146
|
+
|
|
147
|
+
## Who This Is For
|
|
148
|
+
|
|
149
|
+
{Two short paragraphs, max 100 words total. First: the specific person who benefits — their role, their day-to-day, their frustration. Second: who this is NOT for. Be honest about both.}
|
|
150
|
+
|
|
151
|
+
## Getting Started
|
|
152
|
+
|
|
153
|
+
{Copy-pasteable quick-start. Prerequisites, install, first run, first workflow. Use a numbered list or code blocks. No prose padding.}
|
|
154
|
+
|
|
155
|
+
## Architecture
|
|
156
|
+
|
|
157
|
+
{One paragraph, max 80 words. Key abstractions, module organization, where the interesting engineering is. For the architecturally curious — not documentation.}
|
|
158
|
+
|
|
159
|
+
## Roadmap
|
|
160
|
+
|
|
161
|
+
{Bullet list, 5-8 items. What we're building next, informed by the original's gaps and our architecture's capabilities. Each item: one sentence. Be concrete.}
|
|
162
|
+
|
|
163
|
+
## Summary
|
|
164
|
+
|
|
165
|
+
{Three sentences total. What it is. How it works. Why it matters.}
|
|
166
|
+
```
|
|
167
|
+
|
|
168
|
+
## Writing rules
|
|
169
|
+
|
|
170
|
+
- **Dense.** No sentence without new information. No paragraph that restates the previous one. No section that could be half as long.
|
|
171
|
+
- **Specific.** "3 review rounds" not "multiple cycles." "Angular-style commit messages" not "commit messages." Cite counts, names, and mechanisms.
|
|
172
|
+
- **No invented names.** Use "{Project Name}" throughout. Do not use the original's CLI commands or brand.
|
|
173
|
+
- **Honest about the original.** The original had real problems — cite them from the research. Don't soften findings. Don't be mean about it, but don't pretend it was fine either. "The original had N unresolved questions including X, Y, Z" is honest. "The original was a great effort" is empty.
|
|
174
|
+
- **Features explain their WHY.** Every feature description must connect to either: (a) a problem the original had, or (b) a capability the original proved was valuable. Features don't exist in a vacuum — they exist because we studied something and learned.
|
|
175
|
+
- **The pipeline matters.** The most important thing about the features is how they connect. Bootstrap → Research → Planning → Execution → Review → Checkpoint. Explain the pipeline, not just the parts.
|
|
176
|
+
- **Humor serves clarity.** A joke that makes a concept clearer stays. Everything else goes.
|
|
177
|
+
- **Banned words:** revolutionary, powerful, seamless, robust, cutting-edge, next-generation, best-in-class, blazing-fast, game-changing, disruptive, leverage.
|
|
178
|
+
|
|
179
|
+
## Quality gates
|
|
180
|
+
|
|
181
|
+
Before finalizing:
|
|
182
|
+
1. The file starts with valid YAML frontmatter containing `deepResearchQuery` (a non-empty string, 3-8 sentences, specific to this product's domain)
|
|
183
|
+
2. Total body output is 150-250 lines — dense, not padded
|
|
184
|
+
3. Every feature from the original is enumerated (not summarized away)
|
|
185
|
+
4. "What the Original Got Wrong" cites specific findings from the research documents
|
|
186
|
+
5. The pipeline (how features connect) is explicitly explained
|
|
187
|
+
6. No product name appears — only "{Project Name}"
|
|
188
|
+
7. No word from the banned list appears
|
|
189
|
+
8. Every section respects its word limit
|
|
190
|
+
9. A reader finishes knowing: what it does, why it exists, how features connect, what was wrong with the original, and what's next
|
|
191
|
+
10. The deep research query is actionable — someone could paste it into a search engine or research tool and get useful results back
|
|
192
|
+
|
|
193
|
+
If any check fails, cut and tighten until it passes.
|
|
194
|
+
|
|
195
|
+
## Output
|
|
196
|
+
|
|
197
|
+
Output only raw markdown. No preamble, no explanation, no commentary outside the document structure.
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
You are refining a product pitch using a deep research report that validates and enriches the original claims. Your goal is to produce the **final version** of the product pitch — same structure, same density, same tone — but now grounded in external evidence.
|
|
2
|
+
|
|
3
|
+
## Context
|
|
4
|
+
|
|
5
|
+
- **Output File Path**: {outputPath}
|
|
6
|
+
- **Original source repository:** {sourceFullName} (Use a `gh` tool to look into issues)
|
|
7
|
+
- **Local checkout path:** {originalCheckoutPath}
|
|
8
|
+
|
|
9
|
+
**Input documents — read all before starting:**
|
|
10
|
+
|
|
11
|
+
- **Draft Product Pitch**: {productPitchPath} — the initial pitch you are refining. This is your starting structure.
|
|
12
|
+
- **Deep Research Report**: {deepResearchReportPath} — external validation and competitive analysis. Use this to strengthen, correct, or nuance claims in the draft.
|
|
13
|
+
- **Research Summary**: {researchPath} — original project analysis.
|
|
14
|
+
- **Unresolved Problems**: {unresolvedProblemsPath} — gaps and flaws in the original.
|
|
15
|
+
- **Key Decisions**: {decisionsPath} — decision catalog from the original.
|
|
16
|
+
|
|
17
|
+
## What to do
|
|
18
|
+
|
|
19
|
+
1. **Read the draft pitch.** This is your template. Preserve its structure, sections, and tone.
|
|
20
|
+
2. **Read the deep research report.** Extract:
|
|
21
|
+
- Competitive landscape findings — update "The Problem" and "What the Original Got Wrong" with real competitors and comparisons
|
|
22
|
+
- Market validation — if the report confirms the problem is real and widespread, cite the evidence
|
|
23
|
+
- Technical validation — if architectural choices are confirmed as sound (or questioned), incorporate that
|
|
24
|
+
- User evidence — if forums/discussions confirm pain points, weave that into relevant sections
|
|
25
|
+
3. **Refine each section** using the research:
|
|
26
|
+
- Strengthen claims that the research supports with specific citations
|
|
27
|
+
- Soften or remove claims the research contradicts
|
|
28
|
+
- Add new insights the research revealed that the draft missed
|
|
29
|
+
- Update the competitive landscape with real tool names and comparisons
|
|
30
|
+
4. **Strip the frontmatter.** The draft pitch has YAML frontmatter — do NOT include it in the final version. The final pitch is clean markdown, no frontmatter.
|
|
31
|
+
|
|
32
|
+
## Rules
|
|
33
|
+
|
|
34
|
+
- **Same structure.** Do not add or remove sections. The output must have the same headings as the draft.
|
|
35
|
+
- **Same density.** Same word limits per section. If the draft was 200 lines, the final should be 200 lines.
|
|
36
|
+
- **Same tone.** Confident, specific, slightly amused, dense. No corporate creep.
|
|
37
|
+
- **Evidence over assertion.** Where the research provides evidence, cite it. Where it contradicts the draft, fix the draft.
|
|
38
|
+
- **Still honest about the original.** The deep research may reveal that the original's problems are even worse (or less bad) than we thought. Update accordingly.
|
|
39
|
+
- **No product name.** Continue using "{Project Name}" as placeholder.
|
|
40
|
+
- **Banned words:** revolutionary, powerful, seamless, robust, cutting-edge, next-generation, best-in-class, blazing-fast, game-changing, disruptive, leverage.
|
|
41
|
+
|
|
42
|
+
## Output
|
|
43
|
+
|
|
44
|
+
Output only raw markdown. No YAML frontmatter. No preamble, no explanation, no commentary outside the document structure.
|