elliot-stack 1.0.36 → 1.0.38

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 (83) hide show
  1. package/LICENSE +21 -21
  2. package/bin/install.cjs +981 -981
  3. package/hooks/repo-search-nudge.js +32 -32
  4. package/package.json +1 -1
  5. package/skills/estack-active-learning-tutor/SKILL.md +339 -339
  6. package/skills/estack-better-title/SKILL.md +64 -64
  7. package/skills/estack-better-title/scripts/rename.sh +55 -55
  8. package/skills/estack-chris-voss/SKILL.md +80 -80
  9. package/skills/estack-chris-voss/references/elliot-notes.md +120 -120
  10. package/skills/estack-chris-voss/references/voss-principles.md +210 -210
  11. package/skills/estack-customer-discovery/SKILL.md +60 -60
  12. package/skills/estack-flight-planner/SKILL.md +332 -332
  13. package/skills/estack-flight-planner/references/config_schema.md +156 -156
  14. package/skills/estack-flight-planner/references/flight_history_schema.md +97 -97
  15. package/skills/estack-flight-planner/references/shuttle_schedules.md +98 -98
  16. package/skills/estack-flight-planner/scripts/check_setup.sh +89 -89
  17. package/skills/estack-flight-planner/scripts/fetch_flights.py +99 -99
  18. package/skills/estack-flight-planner/scripts/filter_flights.py +265 -265
  19. package/skills/estack-flight-planner/scripts/pair_shuttles.py +173 -173
  20. package/skills/estack-github-issue-tracker/SKILL.md +322 -322
  21. package/skills/estack-github-issue-tracker/bin/tracker-tools.cjs +1358 -1358
  22. package/skills/estack-github-issue-tracker/references/gh-cli-patterns.md +124 -124
  23. package/skills/estack-github-issue-tracker/references/result-file-schema.md +156 -156
  24. package/skills/estack-github-issue-tracker/references/tracker-schema.md +96 -96
  25. package/skills/estack-github-issue-tracker/tracker-template.md +58 -58
  26. package/skills/estack-leadership-coach/SKILL.md +1 -1
  27. package/skills/estack-leadership-coach/adding-references.md +1 -1
  28. package/skills/estack-migrate-claude-session-history/SKILL.md +15 -2
  29. package/skills/estack-pdf-to-md/SKILL.md +1 -2
  30. package/skills/estack-prompt-builder-coach/SKILL.md +81 -81
  31. package/skills/estack-prompt-builder-coach/definition-of-done-generator.md +42 -42
  32. package/skills/estack-prompt-builder-coach/prompt-builder.md +37 -37
  33. package/skills/estack-prompt-builder-coach/task-shaper.md +36 -36
  34. package/skills/estack-prompt-builder-coach/vague-ask-auditor.md +37 -37
  35. package/skills/estack-read-claude-session-history/SKILL.md +228 -204
  36. package/skills/estack-read-claude-session-history/references/jsonl-schema.md +126 -126
  37. package/skills/estack-read-claude-session-history/references/modes.md +455 -423
  38. package/skills/estack-read-claude-session-history/references/recipes.md +300 -271
  39. package/skills/estack-read-claude-session-history/scripts/lib/__init__.py +1 -1
  40. package/skills/estack-read-claude-session-history/scripts/lib/parser.py +460 -460
  41. package/skills/estack-read-claude-session-history/scripts/lib/paths.py +234 -234
  42. package/skills/estack-read-claude-session-history/scripts/lib/search.py +179 -179
  43. package/skills/estack-read-claude-session-history/scripts/lib/subagents.py +88 -88
  44. package/skills/estack-read-claude-session-history/scripts/lib/tools.py +144 -144
  45. package/skills/estack-read-claude-session-history/scripts/read_transcript.py +1914 -1776
  46. package/skills/estack-read-claude-session-history/scripts/tests/conftest.py +40 -40
  47. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/README.md +20 -20
  48. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/all-noise.jsonl +4 -4
  49. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/basic-session.jsonl +2 -2
  50. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-gaps.jsonl +9 -9
  51. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-noise.jsonl +7 -7
  52. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-parallel-a.jsonl +3 -3
  53. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-parallel-b.jsonl +3 -3
  54. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/engagement-waiting.jsonl +5 -5
  55. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/interrupted.jsonl +2 -2
  56. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/multi-compact.jsonl +8 -8
  57. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/pending-user.jsonl +2 -2
  58. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-no-meta/subagents/agent-aaa.jsonl +2 -2
  59. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-no-meta.jsonl +2 -2
  60. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-parent/subagents/agent-xyz123.jsonl +2 -2
  61. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-parent/subagents/agent-xyz123.meta.json +1 -1
  62. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/subagent-parent.jsonl +4 -4
  63. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/time-spread.jsonl +6 -6
  64. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/timeline-day-test.jsonl +5 -5
  65. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/tool-usage-parent/subagents/agent-sub1.jsonl +3 -0
  66. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/tool-usage-parent.jsonl +3 -0
  67. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/tool-zoo.jsonl +10 -10
  68. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/truncated.jsonl +2 -2
  69. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/unicode.jsonl +2 -2
  70. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/with-advisor.jsonl +3 -3
  71. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/with-compact.jsonl +5 -5
  72. package/skills/estack-read-claude-session-history/scripts/tests/fixtures/with-thinking.jsonl +2 -2
  73. package/skills/estack-read-claude-session-history/scripts/tests/test_backup_roots.py +56 -56
  74. package/skills/estack-read-claude-session-history/scripts/tests/test_engagement.py +239 -239
  75. package/skills/estack-read-claude-session-history/scripts/tests/test_json_format.py +201 -201
  76. package/skills/estack-read-claude-session-history/scripts/tests/test_modes.py +323 -199
  77. package/skills/estack-read-claude-session-history/scripts/tests/test_parser.py +195 -195
  78. package/skills/estack-read-claude-session-history/scripts/tests/test_paths.py +133 -133
  79. package/skills/estack-read-claude-session-history/scripts/tests/test_search.py +78 -78
  80. package/skills/estack-read-claude-session-history/scripts/tests/test_subagents.py +43 -43
  81. package/skills/estack-read-claude-session-history/scripts/tests/test_timeline.py +179 -179
  82. package/skills/estack-read-claude-session-history/scripts/tests/test_timezone_and_project.py +212 -212
  83. package/skills/estack-read-claude-session-history/scripts/tests/test_tools.py +80 -80
@@ -1,210 +1,210 @@
1
- # Never Split the Difference — Principles Reference
2
-
3
- Sourced from Elliot's comprehensive notes on Chris Voss's *Never Split the Difference*.
4
-
5
- ---
6
-
7
- ## Voice & Tone
8
-
9
- - **3 voice tones** (in order of usefulness):
10
- 1. **Positive/Playful** *(most useful)*: Smile while talking. Puts people in a positive frame of
11
- mind — they think faster and problem-solve more readily.
12
- 2. **Calm/Downward** *(authority)*: Slow, clear, downward inflection. Conveys "I've got this."
13
- Use when something is not up for discussion.
14
- 3. **Direct/Assertive** *(avoid)*: Signals dominance. Most people push back against it.
15
- - Upward inflection invites response and signals uncertainty. Use intentionally.
16
- - Slow it down. Going too fast makes people feel unheard.
17
-
18
- ---
19
-
20
- ## Listening & Rapport
21
-
22
- - **Make understanding the other person your singular purpose.** This quiets both their inner
23
- voice and yours.
24
- - **Mirroring**: Repeat the last 3 words (or 3 most important words) of what they said. Gets the
25
- speaker to elaborate. Always pause and let them respond after.
26
- - **Being right isn't the goal — having the right mindset is.**
27
- - **Ask people for help.** Everyone wants to help. Especially ask people who don't like you.
28
-
29
- ---
30
-
31
- ## Labeling
32
-
33
- - Identify and acknowledge the other party's emotions to build rapport and guide the conversation.
34
- - Use: *"It sounds like…"* / *"It seems like…"* / *"It looks like…"*
35
- - **Never use "I"** — it sounds selfish and shifts focus to you.
36
- - Emotions have two levels: the **presenting behavior** (visible) and the **underlying feeling**
37
- (what actually drives behavior). Labeling surfaces the underlying feeling.
38
- - **Label negatives first.** Acknowledging fears or concerns upfront reduces their impact.
39
- Ex: *"I don't want this to seem like I'm asking for too much…"* or *"This might sound
40
- unreasonable…"*
41
- - The fastest way to establish rapport: acknowledge the negative and diffuse it.
42
-
43
- ---
44
-
45
- ## The Power of "No"
46
-
47
- - "No" is most people's default. It's the **start** of negotiation, not the end.
48
- - "No" makes people feel in control — it satisfies their primal need for safety and autonomy.
49
- - **Don't push for "Yes."** It makes people defensive. Go for "No" instead.
50
- - How to get a "No" from someone who isn't engaging:
51
- - Say something totally wrong, forcing them to correct you.
52
- - Ask what they *don't* want.
53
- - **Re-engagement email formula**: *"Have you given up on [project/this]?"* — forces a "No"
54
- response and pulls them back in.
55
-
56
- ---
57
-
58
- ## "That's Right" Breakthrough
59
-
60
- - The goal response in any negotiation. Signals the other party truly feels understood.
61
- - **How to get it**: Summarize their position — their words, feelings, perspective — better than
62
- they could. When they say "That's right," you've built enough trust to move forward.
63
- - *"You're right"* ≠ *"That's right."* "You're right" means they want you to stop talking.
64
-
65
- ---
66
-
67
- ## Accusation Audit
68
-
69
- - Preemptively list every negative thing the other party might be thinking or feeling about you
70
- or your ask — before they can say it.
71
- - This triggers loss aversion and prepares them to jump on the first positive you offer.
72
- - **Template**: *"This might sound like I'm [negative thing]. At the same time, [pivot to
73
- value/ask]."*
74
- - **Never use "but"** — it erases everything before it. Use "and" or pause instead.
75
-
76
- ---
77
-
78
- ## Calibrated Questions
79
-
80
- - Open-ended, non-yes/no questions that make the other party problem-solve *for you*.
81
- - Use **how** and **what** (not "why" — it makes people defensive).
82
- - Examples:
83
- - *"How am I supposed to do that?"*
84
- - *"What are we trying to accomplish here?"*
85
- - *"How does this work for you?"*
86
- - Use "why" only when asking them to defend a position that benefits you.
87
- Ex: *"Why would you ever leave your current supplier?"*
88
-
89
- ---
90
-
91
- ## Fairness & Emotion
92
-
93
- - Decision-making is governed by **emotion**, not rationality.
94
- - When accused of being unfair: *"Let's go back to where I started treating you unfairly and fix it."*
95
- - Open negotiations by stating you want to treat them fairly — sets a tone of honesty.
96
- - **Loss aversion**: People take more risks to avoid loss than to realize gain. Make sure the
97
- other party sees what they lose by *not* acting.
98
-
99
- ---
100
-
101
- ## FOMO & Urgency
102
-
103
- - *"I wanted to bring this to you before I took it to anyone else."*
104
- → Creates urgency, makes them feel special, implies a deadline.
105
- - Deadlines are often self-imposed and based on external factors. Don't feel obligated to accept
106
- or reveal your deadline. If you don't know theirs, you'll bargain against yourself.
107
-
108
- ---
109
-
110
- ## Monetary Negotiation
111
-
112
- - **Let the other side go first** when possible — you rarely have all the facts.
113
- - **Establish a range**: Anchor with a range where your floor is higher than your real target.
114
- The other party will anchor to the low end.
115
- - **Precise numbers feel immovable**: $126,263 feels more researched than $125,000.
116
- - **Ackerman Bargaining Model**:
117
- 1. Set your target price.
118
- 2. First offer: 65% of target (extreme anchor).
119
- 3. Three decreasing increments: 85% → 95% → 100%.
120
- 4. Use empathy and different ways to say "no" to make them counter before you move.
121
- 5. Final offer: precise number + nonmonetary item (signals you're at your limit).
122
- - **Add a surprise nonmonetary gift**: Creates reciprocity — they'll feel compelled to give back.
123
- - **Pleasantly persistent on nonmonetary terms**: Can lead to monetary increase as a compromise.
124
-
125
- ---
126
-
127
- ## Rule of 3
128
-
129
- - Getting the other party to agree to the same thing **3 times** triples the likelihood of a
130
- commitment yes (vs. a counterfeit yes).
131
- - Don't repeat yourself — use labels, mirrors, or "how/what" implementation questions to get
132
- 3 versions of the same agreement.
133
- - Asking "how" or "what" about implementation counts as a confirmation.
134
-
135
- ---
136
-
137
- ## 3 Types of Yes
138
-
139
- 1. **Counterfeit Yes**: Avoids conflict. They're not committed.
140
- 2. **Confirmation Yes**: Agreement to a fact. Doesn't mean action.
141
- 3. **Commitment Yes**: Real agreement with intent to follow through. This is what you want.
142
-
143
- ---
144
-
145
- ## Reading People: 3 Negotiator Types
146
-
147
- | Type | Traits | How to Handle | Silence Means |
148
- |---|---|---|---|
149
- | **Assertive** | Time = money, direct, wants to be heard | Mirrors, labels, calibrated questions, "That's right" | They ran out of things to say |
150
- | **Accommodator** | Values relationship, loves win-wins, talkative | Listen deeply, nudge toward action with calibrated Qs | They're angry |
151
- | **Analyst** | Methodical, hates surprises, data-driven | Use clear data, minimal early questions, give thinking time | They're thinking |
152
-
153
- - **66% chance** the other person has a different style than you. Never assume they think like you.
154
- - **Black Swan Rule**: Treat others the way *they* need to be treated.
155
-
156
- ---
157
-
158
- ## Detecting Deception
159
-
160
- - Liars use **more words**, more **third-party pronouns** (avoiding "I"), and more **complex
161
- sentences**.
162
- - **Pronoun power**: Heavy use of "I/me/my" = lower power. Heavy "we/they/them" = likely a
163
- key decision-maker deflecting commitment.
164
-
165
- ---
166
-
167
- ## Leverage
168
-
169
- - **Leverage** = ability to inflict loss and withhold gain.
170
- 1. **Positive**: Other side wants what you have.
171
- 2. **Negative**: You can damage or hurt them (loss aversion lever). Find: what are they
172
- worried about? Who's their audience?
173
- 3. **Normative**: Use their own values/beliefs against inconsistency.
174
-
175
- ---
176
-
177
- ## Black Swans
178
-
179
- - Hidden, unpredictable information that changes everything. Every negotiation has at least 3.
180
- - When someone seems "crazy," there's likely a black swan — they're either ill-informed, have
181
- a hidden constraint, or have interests you don't know about.
182
- - How to find them: Talk in person. Observe unguarded moments (start/end of meetings). Let
183
- what you know guide you but not blind you. Get into their world view.
184
-
185
- ---
186
-
187
- ## Similarity Principle
188
-
189
- - People trust and cooperate more with those they see as similar.
190
- - Find common ground — shared language, tone, values, experiences — to build bond faster.
191
-
192
- ---
193
-
194
- ## The Interview Question That Always Works
195
-
196
- In any high-stakes conversation where you want them invested in your success:
197
- *"What does it take to be successful here?"*
198
- When someone gives you guidance, they have a personal stake in seeing you succeed.
199
-
200
- ---
201
-
202
- ## Key Maxims
203
-
204
- - No deal is better than a bad deal.
205
- - *"How am I supposed to do that?"* instead of "No."
206
- - Never say "but" — use "and" or pause.
207
- - Prepare obsessively. Under pressure, you don't rise to the occasion — you fall to your highest
208
- level of preparation.
209
- - Just asking for something gives 60% success. Adding a reason (any reason) jumps it to 90%.
210
- - The 7/38/55 Rule: 7% words, 38% tone, 55% body language/face.
1
+ # Never Split the Difference — Principles Reference
2
+
3
+ Sourced from Elliot's comprehensive notes on Chris Voss's *Never Split the Difference*.
4
+
5
+ ---
6
+
7
+ ## Voice & Tone
8
+
9
+ - **3 voice tones** (in order of usefulness):
10
+ 1. **Positive/Playful** *(most useful)*: Smile while talking. Puts people in a positive frame of
11
+ mind — they think faster and problem-solve more readily.
12
+ 2. **Calm/Downward** *(authority)*: Slow, clear, downward inflection. Conveys "I've got this."
13
+ Use when something is not up for discussion.
14
+ 3. **Direct/Assertive** *(avoid)*: Signals dominance. Most people push back against it.
15
+ - Upward inflection invites response and signals uncertainty. Use intentionally.
16
+ - Slow it down. Going too fast makes people feel unheard.
17
+
18
+ ---
19
+
20
+ ## Listening & Rapport
21
+
22
+ - **Make understanding the other person your singular purpose.** This quiets both their inner
23
+ voice and yours.
24
+ - **Mirroring**: Repeat the last 3 words (or 3 most important words) of what they said. Gets the
25
+ speaker to elaborate. Always pause and let them respond after.
26
+ - **Being right isn't the goal — having the right mindset is.**
27
+ - **Ask people for help.** Everyone wants to help. Especially ask people who don't like you.
28
+
29
+ ---
30
+
31
+ ## Labeling
32
+
33
+ - Identify and acknowledge the other party's emotions to build rapport and guide the conversation.
34
+ - Use: *"It sounds like…"* / *"It seems like…"* / *"It looks like…"*
35
+ - **Never use "I"** — it sounds selfish and shifts focus to you.
36
+ - Emotions have two levels: the **presenting behavior** (visible) and the **underlying feeling**
37
+ (what actually drives behavior). Labeling surfaces the underlying feeling.
38
+ - **Label negatives first.** Acknowledging fears or concerns upfront reduces their impact.
39
+ Ex: *"I don't want this to seem like I'm asking for too much…"* or *"This might sound
40
+ unreasonable…"*
41
+ - The fastest way to establish rapport: acknowledge the negative and diffuse it.
42
+
43
+ ---
44
+
45
+ ## The Power of "No"
46
+
47
+ - "No" is most people's default. It's the **start** of negotiation, not the end.
48
+ - "No" makes people feel in control — it satisfies their primal need for safety and autonomy.
49
+ - **Don't push for "Yes."** It makes people defensive. Go for "No" instead.
50
+ - How to get a "No" from someone who isn't engaging:
51
+ - Say something totally wrong, forcing them to correct you.
52
+ - Ask what they *don't* want.
53
+ - **Re-engagement email formula**: *"Have you given up on [project/this]?"* — forces a "No"
54
+ response and pulls them back in.
55
+
56
+ ---
57
+
58
+ ## "That's Right" Breakthrough
59
+
60
+ - The goal response in any negotiation. Signals the other party truly feels understood.
61
+ - **How to get it**: Summarize their position — their words, feelings, perspective — better than
62
+ they could. When they say "That's right," you've built enough trust to move forward.
63
+ - *"You're right"* ≠ *"That's right."* "You're right" means they want you to stop talking.
64
+
65
+ ---
66
+
67
+ ## Accusation Audit
68
+
69
+ - Preemptively list every negative thing the other party might be thinking or feeling about you
70
+ or your ask — before they can say it.
71
+ - This triggers loss aversion and prepares them to jump on the first positive you offer.
72
+ - **Template**: *"This might sound like I'm [negative thing]. At the same time, [pivot to
73
+ value/ask]."*
74
+ - **Never use "but"** — it erases everything before it. Use "and" or pause instead.
75
+
76
+ ---
77
+
78
+ ## Calibrated Questions
79
+
80
+ - Open-ended, non-yes/no questions that make the other party problem-solve *for you*.
81
+ - Use **how** and **what** (not "why" — it makes people defensive).
82
+ - Examples:
83
+ - *"How am I supposed to do that?"*
84
+ - *"What are we trying to accomplish here?"*
85
+ - *"How does this work for you?"*
86
+ - Use "why" only when asking them to defend a position that benefits you.
87
+ Ex: *"Why would you ever leave your current supplier?"*
88
+
89
+ ---
90
+
91
+ ## Fairness & Emotion
92
+
93
+ - Decision-making is governed by **emotion**, not rationality.
94
+ - When accused of being unfair: *"Let's go back to where I started treating you unfairly and fix it."*
95
+ - Open negotiations by stating you want to treat them fairly — sets a tone of honesty.
96
+ - **Loss aversion**: People take more risks to avoid loss than to realize gain. Make sure the
97
+ other party sees what they lose by *not* acting.
98
+
99
+ ---
100
+
101
+ ## FOMO & Urgency
102
+
103
+ - *"I wanted to bring this to you before I took it to anyone else."*
104
+ → Creates urgency, makes them feel special, implies a deadline.
105
+ - Deadlines are often self-imposed and based on external factors. Don't feel obligated to accept
106
+ or reveal your deadline. If you don't know theirs, you'll bargain against yourself.
107
+
108
+ ---
109
+
110
+ ## Monetary Negotiation
111
+
112
+ - **Let the other side go first** when possible — you rarely have all the facts.
113
+ - **Establish a range**: Anchor with a range where your floor is higher than your real target.
114
+ The other party will anchor to the low end.
115
+ - **Precise numbers feel immovable**: $126,263 feels more researched than $125,000.
116
+ - **Ackerman Bargaining Model**:
117
+ 1. Set your target price.
118
+ 2. First offer: 65% of target (extreme anchor).
119
+ 3. Three decreasing increments: 85% → 95% → 100%.
120
+ 4. Use empathy and different ways to say "no" to make them counter before you move.
121
+ 5. Final offer: precise number + nonmonetary item (signals you're at your limit).
122
+ - **Add a surprise nonmonetary gift**: Creates reciprocity — they'll feel compelled to give back.
123
+ - **Pleasantly persistent on nonmonetary terms**: Can lead to monetary increase as a compromise.
124
+
125
+ ---
126
+
127
+ ## Rule of 3
128
+
129
+ - Getting the other party to agree to the same thing **3 times** triples the likelihood of a
130
+ commitment yes (vs. a counterfeit yes).
131
+ - Don't repeat yourself — use labels, mirrors, or "how/what" implementation questions to get
132
+ 3 versions of the same agreement.
133
+ - Asking "how" or "what" about implementation counts as a confirmation.
134
+
135
+ ---
136
+
137
+ ## 3 Types of Yes
138
+
139
+ 1. **Counterfeit Yes**: Avoids conflict. They're not committed.
140
+ 2. **Confirmation Yes**: Agreement to a fact. Doesn't mean action.
141
+ 3. **Commitment Yes**: Real agreement with intent to follow through. This is what you want.
142
+
143
+ ---
144
+
145
+ ## Reading People: 3 Negotiator Types
146
+
147
+ | Type | Traits | How to Handle | Silence Means |
148
+ |---|---|---|---|
149
+ | **Assertive** | Time = money, direct, wants to be heard | Mirrors, labels, calibrated questions, "That's right" | They ran out of things to say |
150
+ | **Accommodator** | Values relationship, loves win-wins, talkative | Listen deeply, nudge toward action with calibrated Qs | They're angry |
151
+ | **Analyst** | Methodical, hates surprises, data-driven | Use clear data, minimal early questions, give thinking time | They're thinking |
152
+
153
+ - **66% chance** the other person has a different style than you. Never assume they think like you.
154
+ - **Black Swan Rule**: Treat others the way *they* need to be treated.
155
+
156
+ ---
157
+
158
+ ## Detecting Deception
159
+
160
+ - Liars use **more words**, more **third-party pronouns** (avoiding "I"), and more **complex
161
+ sentences**.
162
+ - **Pronoun power**: Heavy use of "I/me/my" = lower power. Heavy "we/they/them" = likely a
163
+ key decision-maker deflecting commitment.
164
+
165
+ ---
166
+
167
+ ## Leverage
168
+
169
+ - **Leverage** = ability to inflict loss and withhold gain.
170
+ 1. **Positive**: Other side wants what you have.
171
+ 2. **Negative**: You can damage or hurt them (loss aversion lever). Find: what are they
172
+ worried about? Who's their audience?
173
+ 3. **Normative**: Use their own values/beliefs against inconsistency.
174
+
175
+ ---
176
+
177
+ ## Black Swans
178
+
179
+ - Hidden, unpredictable information that changes everything. Every negotiation has at least 3.
180
+ - When someone seems "crazy," there's likely a black swan — they're either ill-informed, have
181
+ a hidden constraint, or have interests you don't know about.
182
+ - How to find them: Talk in person. Observe unguarded moments (start/end of meetings). Let
183
+ what you know guide you but not blind you. Get into their world view.
184
+
185
+ ---
186
+
187
+ ## Similarity Principle
188
+
189
+ - People trust and cooperate more with those they see as similar.
190
+ - Find common ground — shared language, tone, values, experiences — to build bond faster.
191
+
192
+ ---
193
+
194
+ ## The Interview Question That Always Works
195
+
196
+ In any high-stakes conversation where you want them invested in your success:
197
+ *"What does it take to be successful here?"*
198
+ When someone gives you guidance, they have a personal stake in seeing you succeed.
199
+
200
+ ---
201
+
202
+ ## Key Maxims
203
+
204
+ - No deal is better than a bad deal.
205
+ - *"How am I supposed to do that?"* instead of "No."
206
+ - Never say "but" — use "and" or pause.
207
+ - Prepare obsessively. Under pressure, you don't rise to the occasion — you fall to your highest
208
+ level of preparation.
209
+ - Just asking for something gives 60% success. Adding a reason (any reason) jumps it to 90%.
210
+ - The 7/38/55 Rule: 7% words, 38% tone, 55% body language/face.
@@ -1,63 +1,63 @@
1
- ---
2
- name: estack-customer-discovery
3
- version: 1.0.2
4
- description: (customer-discovery) Guide users through customer discovery — validating business ideas, identifying target customers, crafting outreach, preparing interview questions, and analyzing interview results. Use this skill whenever the user mentions customer discovery, customer interviews, validating an idea, market research, finding product-market fit, talking to customers, outreach messages, interview guides, or analyzing customer feedback. Also use when someone says they have a business idea and want to test it, or when they're preparing to talk to potential customers.
5
- ---
6
-
7
- # Customer Discovery
8
-
9
- This skill guides users through the full customer discovery process, or any specific part of it. Customer discovery is a detective exercise — you're confirming or denying assumptions, not selling or pitching.
10
-
11
- ## The flow
12
-
13
- There are 4 steps. Each builds on the last, but the user can jump to any step directly.
14
-
15
- 1. **Strategy & Targeting** — Define who you're talking to, what you're testing, and why. Map assumptions, define customer segments, frame the job-to-be-done.
16
- 2. **Outreach** — Craft messages that get people to say yes to a conversation. Warm intros first, then cold outreach using proven formulas.
17
- 3. **Interview Execution** — Build a tailored interview guide with the right questions (behavioral, story-eliciting) and avoid the wrong ones (speculative, leading). Prepare to run great interviews.
18
- 4. **Analysis & Signals** — Make sense of what you heard. Spot patterns, rank problems, identify progression signals, and decide what to do next.
19
-
20
- ## How to use this skill
21
-
22
- ### Step 1: Figure out what the user needs
23
-
24
- Ask the user: do they want to go through the full flow, or do they need help with a specific step?
25
-
26
- If they describe their situation without picking a step, route them based on where they are:
27
- - Have an idea but haven't talked to anyone yet → Start at **Step 1: Strategy & Targeting**
28
- - Know who to talk to but need help reaching out → **Step 2: Outreach**
29
- - Have interviews scheduled but need questions → **Step 3: Interview Execution**
30
- - Have done interviews and need to make sense of them → **Step 4: Analysis & Signals**
31
-
32
- ### Step 2: Read the right step file — MANDATORY
33
-
34
- <CRITICAL>
35
- You MUST read the step file AND its corresponding reference file BEFORE responding to the user. Do NOT skip this. These files contain the actual frameworks and instructions — without reading them, your output will be generic and wrong.
36
- </CRITICAL>
37
-
38
- Each step has its own workflow file with detailed instructions. **Read the step file first, then read the reference file it points to.** Both reads are required — not optional, not "if you have time."
39
-
40
- | Step | Step file (read first) | Reference file (read second) |
41
- |---|---|---|
42
- | 1. Strategy & Targeting | `steps/step-1-strategy.md` | `references/01-strategy-and-targeting.md` |
43
- | 2. Outreach | `steps/step-2-outreach.md` | `references/02-outreach.md` |
44
- | 3. Interview Execution | `steps/step-3-interviews.md` | `references/03-interview-execution.md` |
45
- | 4. Analysis & Signals | `steps/step-4-analysis.md` | `references/04-analysis-and-signals.md` |
46
-
47
- The reference docs are the source of truth — they contain the principles and frameworks. The step files tell you how to work through them with the user.
48
-
49
- ### Step 3: Be adaptive
50
-
51
- Read the room. If the user clearly knows what they're doing, don't over-explain. If they're new to this, coach them. Adjust your depth and pacing based on how they talk about their idea.
52
-
53
- ### Step 4: Offer deliverables
54
-
55
- At the end of each step, offer to produce a written summary the user can reference later. Don't force it — some users just want the conversation.
56
-
57
- ### Step 5: Continue the flow
58
-
59
- After completing a step, offer to continue to the next one by name (e.g., "Would you like to continue to **Step 3: Interview Execution**?"). Never reference a step by number alone — always include the name so the user knows what it covers. If the user jumped into a specific step, still offer the next step — they might want to keep going.
60
-
1
+ ---
2
+ name: estack-customer-discovery
3
+ version: 1.0.2
4
+ description: (customer-discovery) Guide users through customer discovery — validating business ideas, identifying target customers, crafting outreach, preparing interview questions, and analyzing interview results. Use this skill whenever the user mentions customer discovery, customer interviews, validating an idea, market research, finding product-market fit, talking to customers, outreach messages, interview guides, or analyzing customer feedback. Also use when someone says they have a business idea and want to test it, or when they're preparing to talk to potential customers.
5
+ ---
6
+
7
+ # Customer Discovery
8
+
9
+ This skill guides users through the full customer discovery process, or any specific part of it. Customer discovery is a detective exercise — you're confirming or denying assumptions, not selling or pitching.
10
+
11
+ ## The flow
12
+
13
+ There are 4 steps. Each builds on the last, but the user can jump to any step directly.
14
+
15
+ 1. **Strategy & Targeting** — Define who you're talking to, what you're testing, and why. Map assumptions, define customer segments, frame the job-to-be-done.
16
+ 2. **Outreach** — Craft messages that get people to say yes to a conversation. Warm intros first, then cold outreach using proven formulas.
17
+ 3. **Interview Execution** — Build a tailored interview guide with the right questions (behavioral, story-eliciting) and avoid the wrong ones (speculative, leading). Prepare to run great interviews.
18
+ 4. **Analysis & Signals** — Make sense of what you heard. Spot patterns, rank problems, identify progression signals, and decide what to do next.
19
+
20
+ ## How to use this skill
21
+
22
+ ### Step 1: Figure out what the user needs
23
+
24
+ Ask the user: do they want to go through the full flow, or do they need help with a specific step?
25
+
26
+ If they describe their situation without picking a step, route them based on where they are:
27
+ - Have an idea but haven't talked to anyone yet → Start at **Step 1: Strategy & Targeting**
28
+ - Know who to talk to but need help reaching out → **Step 2: Outreach**
29
+ - Have interviews scheduled but need questions → **Step 3: Interview Execution**
30
+ - Have done interviews and need to make sense of them → **Step 4: Analysis & Signals**
31
+
32
+ ### Step 2: Read the right step file — MANDATORY
33
+
34
+ <CRITICAL>
35
+ You MUST read the step file AND its corresponding reference file BEFORE responding to the user. Do NOT skip this. These files contain the actual frameworks and instructions — without reading them, your output will be generic and wrong.
36
+ </CRITICAL>
37
+
38
+ Each step has its own workflow file with detailed instructions. **Read the step file first, then read the reference file it points to.** Both reads are required — not optional, not "if you have time."
39
+
40
+ | Step | Step file (read first) | Reference file (read second) |
41
+ |---|---|---|
42
+ | 1. Strategy & Targeting | `steps/step-1-strategy.md` | `references/01-strategy-and-targeting.md` |
43
+ | 2. Outreach | `steps/step-2-outreach.md` | `references/02-outreach.md` |
44
+ | 3. Interview Execution | `steps/step-3-interviews.md` | `references/03-interview-execution.md` |
45
+ | 4. Analysis & Signals | `steps/step-4-analysis.md` | `references/04-analysis-and-signals.md` |
46
+
47
+ The reference docs are the source of truth — they contain the principles and frameworks. The step files tell you how to work through them with the user.
48
+
49
+ ### Step 3: Be adaptive
50
+
51
+ Read the room. If the user clearly knows what they're doing, don't over-explain. If they're new to this, coach them. Adjust your depth and pacing based on how they talk about their idea.
52
+
53
+ ### Step 4: Offer deliverables
54
+
55
+ At the end of each step, offer to produce a written summary the user can reference later. Don't force it — some users just want the conversation.
56
+
57
+ ### Step 5: Continue the flow
58
+
59
+ After completing a step, offer to continue to the next one by name (e.g., "Would you like to continue to **Step 3: Interview Execution**?"). Never reference a step by number alone — always include the name so the user knows what it covers. If the user jumped into a specific step, still offer the next step — they might want to keep going.
60
+
61
61
  ---
62
62
 
63
63
  ## Skill Feedback