@dzhechkov/skills-presentation-storyteller 0.1.0
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/LICENSE +21 -0
- package/README.md +53 -0
- package/bin/cli.js +5 -0
- package/package.json +47 -0
- package/sources.json +19 -0
- package/src/cli.js +107 -0
- package/src/commands/doctor.js +340 -0
- package/src/commands/init.js +168 -0
- package/src/commands/list.js +146 -0
- package/src/commands/remove.js +182 -0
- package/src/commands/update.js +170 -0
- package/src/utils.js +149 -0
- package/templates/.claude/commands/presentation-storyteller.md +23 -0
- package/templates/.claude/skills/explore/SKILL.md +218 -0
- package/templates/.claude/skills/explore/references/questioning-techniques.md +151 -0
- package/templates/.claude/skills/explore/references/task-brief-templates.md +355 -0
- package/templates/.claude/skills/goap-research-ed25519/SKILL.md +418 -0
- package/templates/.claude/skills/goap-research-ed25519/references/ed25519-verification.md +658 -0
- package/templates/.claude/skills/goap-research-ed25519/references/research-actions.md +544 -0
- package/templates/.claude/skills/goap-research-ed25519/references/source-evaluation.md +560 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/ed25519_verifier.py +662 -0
- package/templates/.claude/skills/goap-research-ed25519/scripts/goap_planner.py +720 -0
- package/templates/.claude/skills/presentation-storyteller/SKILL.md +374 -0
- package/templates/.claude/skills/presentation-storyteller/references/example-presentation.md +273 -0
- package/templates/.claude/skills/presentation-storyteller/references/slide-types.md +426 -0
- package/templates/.claude/skills/presentation-storyteller/references/sources-index-template.md +213 -0
- package/templates/.claude/skills/presentation-storyteller/references/speaker-script-patterns.md +324 -0
- package/templates/.claude/skills/presentation-storyteller/references/storytelling-frameworks.md +270 -0
|
@@ -0,0 +1,355 @@
|
|
|
1
|
+
# Task Brief Templates
|
|
2
|
+
|
|
3
|
+
Structured templates for different task types. Use as output format after exploration phase.
|
|
4
|
+
|
|
5
|
+
## Universal Brief Structure
|
|
6
|
+
|
|
7
|
+
```markdown
|
|
8
|
+
## Task Brief: [Task Name]
|
|
9
|
+
|
|
10
|
+
**Type:** [Product | Problem | Decision | Creative | Research | Process]
|
|
11
|
+
**Created:** [Date]
|
|
12
|
+
**Status:** Ready for execution
|
|
13
|
+
|
|
14
|
+
### Objective
|
|
15
|
+
[One sentence describing what we're actually solving/creating]
|
|
16
|
+
|
|
17
|
+
### Context
|
|
18
|
+
[2-3 sentences of relevant background]
|
|
19
|
+
|
|
20
|
+
### Success Criteria
|
|
21
|
+
- [ ] [Measurable criterion 1]
|
|
22
|
+
- [ ] [Measurable criterion 2]
|
|
23
|
+
- [ ] [Measurable criterion 3]
|
|
24
|
+
|
|
25
|
+
### Constraints
|
|
26
|
+
- **Hard:** [Cannot be changed]
|
|
27
|
+
- **Soft:** [Prefer to avoid, but negotiable]
|
|
28
|
+
|
|
29
|
+
### Resources
|
|
30
|
+
- [Available asset/person/tool 1]
|
|
31
|
+
- [Available asset/person/tool 2]
|
|
32
|
+
|
|
33
|
+
### Timeline
|
|
34
|
+
- **Deadline:** [Date or "No hard deadline"]
|
|
35
|
+
- **Urgency:** [Critical | High | Medium | Low]
|
|
36
|
+
- **Driver:** [What's driving the timeline]
|
|
37
|
+
|
|
38
|
+
### Key Assumptions
|
|
39
|
+
1. [Assumption that, if wrong, changes approach]
|
|
40
|
+
2. [Assumption that, if wrong, changes approach]
|
|
41
|
+
|
|
42
|
+
### Out of Scope
|
|
43
|
+
- [Explicitly excluded item 1]
|
|
44
|
+
- [Explicitly excluded item 2]
|
|
45
|
+
|
|
46
|
+
### Next Steps
|
|
47
|
+
1. [Immediate action]
|
|
48
|
+
2. [Follow-up action]
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Product/Feature Brief
|
|
54
|
+
|
|
55
|
+
```markdown
|
|
56
|
+
## Product Brief: [Feature Name]
|
|
57
|
+
|
|
58
|
+
### The Problem
|
|
59
|
+
[What user pain or business need this addresses]
|
|
60
|
+
|
|
61
|
+
### Target Users
|
|
62
|
+
- **Primary:** [User type] — [their context and needs]
|
|
63
|
+
- **Secondary:** [User type] — [their context and needs]
|
|
64
|
+
|
|
65
|
+
### Desired Outcome
|
|
66
|
+
[What changes for users when this exists]
|
|
67
|
+
|
|
68
|
+
### Success Metrics
|
|
69
|
+
- [Metric 1]: [Target value]
|
|
70
|
+
- [Metric 2]: [Target value]
|
|
71
|
+
|
|
72
|
+
### Technical Constraints
|
|
73
|
+
- Must integrate with: [systems]
|
|
74
|
+
- Cannot use: [technologies/approaches]
|
|
75
|
+
- Performance requirements: [specifics]
|
|
76
|
+
|
|
77
|
+
### Resource Constraints
|
|
78
|
+
- Budget: [amount or range]
|
|
79
|
+
- Team: [who's available]
|
|
80
|
+
- Timeline: [deadline and why]
|
|
81
|
+
|
|
82
|
+
### User Journey
|
|
83
|
+
1. User starts at: [current state]
|
|
84
|
+
2. User triggers: [action]
|
|
85
|
+
3. System provides: [response]
|
|
86
|
+
4. User achieves: [outcome]
|
|
87
|
+
|
|
88
|
+
### MVP Definition
|
|
89
|
+
The minimum version that would be valuable:
|
|
90
|
+
- [Feature 1] — essential
|
|
91
|
+
- [Feature 2] — essential
|
|
92
|
+
- [Feature 3] — nice to have
|
|
93
|
+
|
|
94
|
+
### Risks & Mitigations
|
|
95
|
+
| Risk | Likelihood | Impact | Mitigation |
|
|
96
|
+
|------|------------|--------|------------|
|
|
97
|
+
| [Risk 1] | [H/M/L] | [H/M/L] | [Strategy] |
|
|
98
|
+
|
|
99
|
+
### Out of Scope for V1
|
|
100
|
+
- [Feature/aspect explicitly deferred]
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
---
|
|
104
|
+
|
|
105
|
+
## Problem-Solving Brief
|
|
106
|
+
|
|
107
|
+
```markdown
|
|
108
|
+
## Problem Brief: [Problem Name]
|
|
109
|
+
|
|
110
|
+
### Problem Statement
|
|
111
|
+
[Clear description of what's going wrong]
|
|
112
|
+
|
|
113
|
+
### Impact
|
|
114
|
+
- **Who's affected:** [Users/teams/processes]
|
|
115
|
+
- **Frequency:** [How often it occurs]
|
|
116
|
+
- **Severity:** [Consequences when it happens]
|
|
117
|
+
|
|
118
|
+
### Root Cause Analysis
|
|
119
|
+
- Symptom: [What we observe]
|
|
120
|
+
- Immediate cause: [First why]
|
|
121
|
+
- Underlying cause: [Second why]
|
|
122
|
+
- Root cause: [Deepest why we reached]
|
|
123
|
+
|
|
124
|
+
### Current State
|
|
125
|
+
[How things work today, including workarounds]
|
|
126
|
+
|
|
127
|
+
### Desired State
|
|
128
|
+
[How things should work after problem is solved]
|
|
129
|
+
|
|
130
|
+
### Attempted Solutions
|
|
131
|
+
| Solution Tried | Why It Didn't Work |
|
|
132
|
+
|----------------|-------------------|
|
|
133
|
+
| [Attempt 1] | [Reason] |
|
|
134
|
+
| [Attempt 2] | [Reason] |
|
|
135
|
+
|
|
136
|
+
### Constraints
|
|
137
|
+
- Cannot change: [fixed elements]
|
|
138
|
+
- Must preserve: [requirements to maintain]
|
|
139
|
+
- Budget: [if applicable]
|
|
140
|
+
- Timeline: [urgency and driver]
|
|
141
|
+
|
|
142
|
+
### Success Criteria
|
|
143
|
+
Problem is solved when:
|
|
144
|
+
- [ ] [Observable outcome 1]
|
|
145
|
+
- [ ] [Observable outcome 2]
|
|
146
|
+
|
|
147
|
+
### Stakeholders
|
|
148
|
+
- Decision maker: [Person/role]
|
|
149
|
+
- Subject matter experts: [People/roles]
|
|
150
|
+
- Affected parties: [People/roles]
|
|
151
|
+
```
|
|
152
|
+
|
|
153
|
+
---
|
|
154
|
+
|
|
155
|
+
## Decision Brief
|
|
156
|
+
|
|
157
|
+
```markdown
|
|
158
|
+
## Decision Brief: [Decision Topic]
|
|
159
|
+
|
|
160
|
+
### Decision Required
|
|
161
|
+
[Clear statement of what needs to be decided]
|
|
162
|
+
|
|
163
|
+
### Context
|
|
164
|
+
[Why this decision is necessary now]
|
|
165
|
+
|
|
166
|
+
### Options Under Consideration
|
|
167
|
+
1. **[Option A]:** [Brief description]
|
|
168
|
+
2. **[Option B]:** [Brief description]
|
|
169
|
+
3. **[Option C]:** [Brief description]
|
|
170
|
+
|
|
171
|
+
### Evaluation Criteria (weighted)
|
|
172
|
+
| Criterion | Weight | Description |
|
|
173
|
+
|-----------|--------|-------------|
|
|
174
|
+
| [Criterion 1] | [1-5] | [What it means] |
|
|
175
|
+
| [Criterion 2] | [1-5] | [What it means] |
|
|
176
|
+
|
|
177
|
+
### Key Trade-offs
|
|
178
|
+
- [Option A] favors [benefit] but sacrifices [cost]
|
|
179
|
+
- [Option B] favors [benefit] but sacrifices [cost]
|
|
180
|
+
|
|
181
|
+
### Reversibility Assessment
|
|
182
|
+
- **Reversible:** Can easily change course
|
|
183
|
+
- **Partially reversible:** Can change with some cost
|
|
184
|
+
- **Irreversible:** Decision is permanent
|
|
185
|
+
|
|
186
|
+
### Information Gaps
|
|
187
|
+
- [What we don't know that would help]
|
|
188
|
+
- [What we're assuming that could be wrong]
|
|
189
|
+
|
|
190
|
+
### Timeline
|
|
191
|
+
- Decision needed by: [Date]
|
|
192
|
+
- Driver: [Why this date matters]
|
|
193
|
+
|
|
194
|
+
### Decision Maker
|
|
195
|
+
[Person/group who makes final call]
|
|
196
|
+
|
|
197
|
+
### Recommendation
|
|
198
|
+
[If user wants one, or "To be determined after analysis"]
|
|
199
|
+
```
|
|
200
|
+
|
|
201
|
+
---
|
|
202
|
+
|
|
203
|
+
## Creative Brief
|
|
204
|
+
|
|
205
|
+
```markdown
|
|
206
|
+
## Creative Brief: [Project Name]
|
|
207
|
+
|
|
208
|
+
### Objective
|
|
209
|
+
[What this content/design needs to achieve]
|
|
210
|
+
|
|
211
|
+
### Target Audience
|
|
212
|
+
- **Who:** [Demographics, psychographics]
|
|
213
|
+
- **Context:** [When/where they'll encounter this]
|
|
214
|
+
- **Current state:** [What they currently think/feel/do]
|
|
215
|
+
- **Desired state:** [What we want them to think/feel/do]
|
|
216
|
+
|
|
217
|
+
### Key Message
|
|
218
|
+
[One sentence that captures the essence]
|
|
219
|
+
|
|
220
|
+
### Tone & Voice
|
|
221
|
+
- Tone: [e.g., professional, playful, urgent]
|
|
222
|
+
- Voice: [e.g., authoritative, friendly, provocative]
|
|
223
|
+
- NOT: [What to avoid]
|
|
224
|
+
|
|
225
|
+
### Format & Specifications
|
|
226
|
+
- Type: [Blog, presentation, video script, etc.]
|
|
227
|
+
- Length: [Word count, duration, etc.]
|
|
228
|
+
- Format requirements: [Technical specs]
|
|
229
|
+
|
|
230
|
+
### Content Pillars
|
|
231
|
+
1. [Key point/theme to include]
|
|
232
|
+
2. [Key point/theme to include]
|
|
233
|
+
3. [Key point/theme to include]
|
|
234
|
+
|
|
235
|
+
### Reference & Inspiration
|
|
236
|
+
- Like this: [Examples of what good looks like]
|
|
237
|
+
- Not like this: [Anti-examples]
|
|
238
|
+
|
|
239
|
+
### Must Include
|
|
240
|
+
- [Required element 1]
|
|
241
|
+
- [Required element 2]
|
|
242
|
+
|
|
243
|
+
### Must Avoid
|
|
244
|
+
- [Topic/approach to avoid 1]
|
|
245
|
+
- [Topic/approach to avoid 2]
|
|
246
|
+
|
|
247
|
+
### Success Metrics
|
|
248
|
+
- [How we'll know this worked]
|
|
249
|
+
|
|
250
|
+
### Timeline
|
|
251
|
+
- First draft: [Date]
|
|
252
|
+
- Final delivery: [Date]
|
|
253
|
+
|
|
254
|
+
### Approval Process
|
|
255
|
+
[Who reviews, how many rounds expected]
|
|
256
|
+
```
|
|
257
|
+
|
|
258
|
+
---
|
|
259
|
+
|
|
260
|
+
## Research Brief
|
|
261
|
+
|
|
262
|
+
```markdown
|
|
263
|
+
## Research Brief: [Research Topic]
|
|
264
|
+
|
|
265
|
+
### Research Question
|
|
266
|
+
[Primary question to answer]
|
|
267
|
+
|
|
268
|
+
### Sub-questions
|
|
269
|
+
1. [Supporting question 1]
|
|
270
|
+
2. [Supporting question 2]
|
|
271
|
+
3. [Supporting question 3]
|
|
272
|
+
|
|
273
|
+
### Purpose
|
|
274
|
+
[Why this research matters, what decisions it will inform]
|
|
275
|
+
|
|
276
|
+
### Scope
|
|
277
|
+
- **In scope:** [Topics/sources to include]
|
|
278
|
+
- **Out of scope:** [What to exclude]
|
|
279
|
+
- **Depth:** [Surface overview | Detailed analysis | Comprehensive deep-dive]
|
|
280
|
+
|
|
281
|
+
### Source Requirements
|
|
282
|
+
- Preferred: [Primary sources, academic, industry reports, etc.]
|
|
283
|
+
- Acceptable: [Secondary sources]
|
|
284
|
+
- Avoid: [Unreliable source types]
|
|
285
|
+
|
|
286
|
+
### Deliverable Format
|
|
287
|
+
- Type: [Summary, report, comparison table, etc.]
|
|
288
|
+
- Length: [Approximate]
|
|
289
|
+
- Structure: [How to organize findings]
|
|
290
|
+
|
|
291
|
+
### Key Stakeholders
|
|
292
|
+
- Research sponsor: [Who needs this]
|
|
293
|
+
- Subject matter experts to consult: [If any]
|
|
294
|
+
|
|
295
|
+
### Timeline
|
|
296
|
+
- Deadline: [Date]
|
|
297
|
+
- Interim check-ins: [If any]
|
|
298
|
+
|
|
299
|
+
### Known Information
|
|
300
|
+
[What we already know, to avoid re-researching]
|
|
301
|
+
|
|
302
|
+
### Hypotheses to Test
|
|
303
|
+
1. [Hypothesis 1 — confirm or refute]
|
|
304
|
+
2. [Hypothesis 2 — confirm or refute]
|
|
305
|
+
```
|
|
306
|
+
|
|
307
|
+
---
|
|
308
|
+
|
|
309
|
+
## Process Improvement Brief
|
|
310
|
+
|
|
311
|
+
```markdown
|
|
312
|
+
## Process Brief: [Process Name]
|
|
313
|
+
|
|
314
|
+
### Process Overview
|
|
315
|
+
[What this process does and why it exists]
|
|
316
|
+
|
|
317
|
+
### Current State
|
|
318
|
+
- Steps: [Current workflow]
|
|
319
|
+
- Time: [How long it takes]
|
|
320
|
+
- Pain points: [Where it breaks down]
|
|
321
|
+
- Workarounds: [How people cope]
|
|
322
|
+
|
|
323
|
+
### Desired State
|
|
324
|
+
[What the improved process should look like]
|
|
325
|
+
|
|
326
|
+
### Improvement Goals
|
|
327
|
+
- [ ] Reduce [metric] by [target]
|
|
328
|
+
- [ ] Eliminate [pain point]
|
|
329
|
+
- [ ] Enable [new capability]
|
|
330
|
+
|
|
331
|
+
### Constraints
|
|
332
|
+
- Cannot change: [Fixed elements]
|
|
333
|
+
- Must maintain: [Requirements to preserve]
|
|
334
|
+
- Dependencies: [Systems/processes that connect]
|
|
335
|
+
|
|
336
|
+
### Stakeholders
|
|
337
|
+
- Process owner: [Person/role]
|
|
338
|
+
- Process users: [People/roles]
|
|
339
|
+
- Affected by changes: [People/roles]
|
|
340
|
+
|
|
341
|
+
### Success Metrics
|
|
342
|
+
| Metric | Current | Target |
|
|
343
|
+
|--------|---------|--------|
|
|
344
|
+
| [Metric 1] | [Value] | [Value] |
|
|
345
|
+
| [Metric 2] | [Value] | [Value] |
|
|
346
|
+
|
|
347
|
+
### Implementation Constraints
|
|
348
|
+
- Rollout approach: [Big bang | Phased | Pilot]
|
|
349
|
+
- Training needs: [What's required]
|
|
350
|
+
- Timeline: [Deadline and driver]
|
|
351
|
+
|
|
352
|
+
### Risks
|
|
353
|
+
- [Risk 1 and mitigation]
|
|
354
|
+
- [Risk 2 and mitigation]
|
|
355
|
+
```
|