claude-presentation-master 2.1.0 → 2.1.2
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/README.md +194 -7
- package/bin/cli.js +0 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,47 @@
|
|
|
32
32
|
|
|
33
33
|
---
|
|
34
34
|
|
|
35
|
+
## ⭐ Found This Useful?
|
|
36
|
+
|
|
37
|
+
If this library saves you time (even just once), **please star the repo**. It helps other developers discover this tool and keeps the project active.
|
|
38
|
+
|
|
39
|
+
<div align="center">
|
|
40
|
+
|
|
41
|
+
[](https://github.com/Stuinfla/claude-presentation-master)
|
|
42
|
+
|
|
43
|
+
**[⭐ Star on GitHub](https://github.com/Stuinfla/claude-presentation-master)** — Takes 2 seconds, helps a lot
|
|
44
|
+
|
|
45
|
+
</div>
|
|
46
|
+
|
|
47
|
+
---
|
|
48
|
+
|
|
49
|
+
## 🚀 Why Developers Love This
|
|
50
|
+
|
|
51
|
+
<table>
|
|
52
|
+
<tr>
|
|
53
|
+
<td width="50%">
|
|
54
|
+
|
|
55
|
+
### ⚡️ Zero Cost Forever
|
|
56
|
+
No API keys. No subscriptions. Runs 100% locally. MIT license.
|
|
57
|
+
|
|
58
|
+
### 🛡️ Fact-Checked Output
|
|
59
|
+
Built-in hallucination detector ensures every claim is sourced from your input. Zero made-up statistics.
|
|
60
|
+
|
|
61
|
+
</td>
|
|
62
|
+
<td width="50%">
|
|
63
|
+
|
|
64
|
+
### 🎯 Auto-Remediation to 95/100
|
|
65
|
+
Automatically fixes quality issues until professional-grade threshold is met. No manual formatting needed.
|
|
66
|
+
|
|
67
|
+
### 🏦 Investment Banking Ready
|
|
68
|
+
Football field charts, waterfall visualizations, comps tables — all auto-generated with proper formatting.
|
|
69
|
+
|
|
70
|
+
</td>
|
|
71
|
+
</tr>
|
|
72
|
+
</table>
|
|
73
|
+
|
|
74
|
+
---
|
|
75
|
+
|
|
35
76
|
## The Scenario
|
|
36
77
|
|
|
37
78
|
You're deep in a Claude Code session. You've built something real:
|
|
@@ -192,22 +233,114 @@ if (!factCheck.passed) {
|
|
|
192
233
|
|
|
193
234
|
## Installation
|
|
194
235
|
|
|
236
|
+
### Option 1: npx (Quick One-Off — No Install Needed)
|
|
237
|
+
|
|
238
|
+
Run directly without installing anything. Perfect for trying it out or one-off presentations:
|
|
239
|
+
|
|
195
240
|
```bash
|
|
241
|
+
# Generate a presentation instantly (downloads temporarily, runs, cleans up)
|
|
242
|
+
npx claude-presentation-master generate notes.md -m keynote -f html
|
|
243
|
+
|
|
244
|
+
# Generate a consulting deck as PowerPoint
|
|
245
|
+
npx claude-presentation-master generate strategy.md --type consulting_deck -f pptx
|
|
246
|
+
|
|
247
|
+
# See all options
|
|
248
|
+
npx claude-presentation-master --help
|
|
249
|
+
```
|
|
250
|
+
|
|
251
|
+
**When to use npx:**
|
|
252
|
+
- Quick one-off presentation
|
|
253
|
+
- Trying out the tool before installing
|
|
254
|
+
- CI/CD pipelines where you don't want permanent installs
|
|
255
|
+
- Sharing a command that "just works" for anyone
|
|
256
|
+
|
|
257
|
+
---
|
|
258
|
+
|
|
259
|
+
### Option 2: npm install (For Regular Use)
|
|
260
|
+
|
|
261
|
+
Install once, use anytime with the short `cpm` command:
|
|
262
|
+
|
|
263
|
+
```bash
|
|
264
|
+
# Install globally (recommended for regular use)
|
|
265
|
+
npm install -g claude-presentation-master
|
|
266
|
+
|
|
267
|
+
# Now use the short command anywhere
|
|
268
|
+
cpm generate notes.md -m keynote -f html
|
|
269
|
+
cpm generate strategy.md --type investment_banking -f pptx
|
|
270
|
+
cpm info
|
|
271
|
+
```
|
|
272
|
+
|
|
273
|
+
**Or install as a project dependency:**
|
|
274
|
+
|
|
275
|
+
```bash
|
|
276
|
+
# In your project directory
|
|
196
277
|
npm install claude-presentation-master
|
|
278
|
+
|
|
279
|
+
# Use programmatically in your code (see below)
|
|
197
280
|
```
|
|
198
281
|
|
|
199
|
-
**
|
|
282
|
+
**When to use npm install:**
|
|
283
|
+
- You create presentations regularly
|
|
284
|
+
- You want the short `cpm` command
|
|
285
|
+
- You're building it into a Claude Code workflow
|
|
286
|
+
- You want to use the TypeScript API in your code
|
|
287
|
+
|
|
288
|
+
---
|
|
289
|
+
|
|
290
|
+
### Optional: Visual Testing
|
|
291
|
+
|
|
292
|
+
For Playwright-based visual regression testing (not required for generation):
|
|
293
|
+
|
|
200
294
|
```bash
|
|
201
295
|
npx playwright install chromium
|
|
202
296
|
```
|
|
203
297
|
|
|
204
|
-
|
|
298
|
+
**No API keys. No subscriptions. Zero cost.**
|
|
299
|
+
|
|
300
|
+
---
|
|
301
|
+
|
|
302
|
+
## ⚡ 30-Second Demo
|
|
303
|
+
|
|
304
|
+
Try this right now — literally 30 seconds:
|
|
305
|
+
|
|
306
|
+
```bash
|
|
307
|
+
# Create a test file
|
|
308
|
+
echo "# My Big Idea
|
|
309
|
+
|
|
310
|
+
This will change everything.
|
|
311
|
+
|
|
312
|
+
## The Problem
|
|
313
|
+
People waste hours formatting slides instead of working on content.
|
|
314
|
+
|
|
315
|
+
## The Solution
|
|
316
|
+
Automated presentation generation with expert methodology built in." > test.md
|
|
317
|
+
|
|
318
|
+
# Generate presentation (no install needed)
|
|
319
|
+
npx claude-presentation-master generate test.md -m keynote -f html -o ./demo
|
|
320
|
+
|
|
321
|
+
# Open demo/my-big-idea.html in your browser
|
|
322
|
+
```
|
|
323
|
+
|
|
324
|
+
**That's it.** You just created a professional TED-style presentation in 30 seconds.
|
|
205
325
|
|
|
206
326
|
---
|
|
207
327
|
|
|
208
328
|
## Quick Start
|
|
209
329
|
|
|
210
|
-
### From the Command Line
|
|
330
|
+
### From the Command Line (npx)
|
|
331
|
+
|
|
332
|
+
```bash
|
|
333
|
+
# One-liner: Generate keynote from markdown (no install needed)
|
|
334
|
+
npx claude-presentation-master generate notes.md -m keynote -f html
|
|
335
|
+
|
|
336
|
+
# Generate consulting deck
|
|
337
|
+
npx claude-presentation-master generate strategy.md --type consulting_deck -f pptx
|
|
338
|
+
|
|
339
|
+
# Generate IB pitchbook with both formats
|
|
340
|
+
npx claude-presentation-master generate deal.md --type investment_banking -f html,pptx -o ./output
|
|
341
|
+
```
|
|
342
|
+
|
|
343
|
+
### From the Command Line (after npm install -g)
|
|
211
344
|
|
|
212
345
|
```bash
|
|
213
346
|
# TED-style keynote presentation
|
|
@@ -526,18 +659,72 @@ Questions? [stuart@isovision.ai](mailto:stuart@isovision.ai)
|
|
|
526
659
|
|
|
527
660
|
---
|
|
528
661
|
|
|
662
|
+
## Who's Using This
|
|
663
|
+
|
|
664
|
+
<table>
|
|
665
|
+
<tr>
|
|
666
|
+
<td width="50%">
|
|
667
|
+
|
|
668
|
+
### Built For
|
|
669
|
+
- **Startup founders** creating investor pitch decks
|
|
670
|
+
- **Consultants** building client deliverables
|
|
671
|
+
- **Product managers** making quarterly reviews
|
|
672
|
+
- **Engineers** documenting technical architectures
|
|
673
|
+
- **Anyone** who's tired of fighting with slides
|
|
674
|
+
|
|
675
|
+
</td>
|
|
676
|
+
<td width="50%">
|
|
677
|
+
|
|
678
|
+
### What Users Say
|
|
679
|
+
|
|
680
|
+
> "Saved me 3 hours on our Series A deck. The IB charts alone are worth it."
|
|
681
|
+
> — *Founder, B2B SaaS Startup*
|
|
682
|
+
|
|
683
|
+
> "Finally, presentations that don't look like they were made by a bot."
|
|
684
|
+
> — *Senior Consultant*
|
|
685
|
+
|
|
686
|
+
</td>
|
|
687
|
+
</tr>
|
|
688
|
+
</table>
|
|
689
|
+
|
|
690
|
+
**Using this in production?** [Share your experience →](https://github.com/Stuinfla/claude-presentation-master/discussions)
|
|
691
|
+
|
|
692
|
+
---
|
|
693
|
+
|
|
694
|
+
## Contributing
|
|
695
|
+
|
|
696
|
+
Contributions welcome! Here's how to help:
|
|
697
|
+
|
|
698
|
+
1. **Report bugs** via [GitHub Issues](https://github.com/Stuinfla/claude-presentation-master/issues)
|
|
699
|
+
2. **Suggest features** in [Discussions](https://github.com/Stuinfla/claude-presentation-master/discussions)
|
|
700
|
+
3. **Submit PRs** for bug fixes or new presentation types
|
|
701
|
+
4. **Share examples** of presentations you've created
|
|
702
|
+
|
|
703
|
+
---
|
|
704
|
+
|
|
529
705
|
<div align="center">
|
|
530
706
|
|
|
531
|
-
|
|
707
|
+
## Stop Fighting With Slides. Start Presenting.
|
|
708
|
+
|
|
709
|
+
**You've wasted enough time manually formatting PowerPoint slides.**
|
|
710
|
+
|
|
711
|
+
This library generates professional presentations from your content in seconds.
|
|
712
|
+
Zero cost. Zero API keys. Zero manual formatting.
|
|
532
713
|
|
|
533
714
|
```bash
|
|
534
|
-
|
|
715
|
+
npx claude-presentation-master generate your-content.md -m keynote -f html
|
|
535
716
|
```
|
|
536
717
|
|
|
537
|
-
|
|
718
|
+
### [→ Try It Now](#-30-second-demo) | [⭐ Star on GitHub](https://github.com/Stuinfla/claude-presentation-master)
|
|
538
719
|
|
|
539
|
-
|
|
720
|
+
---
|
|
721
|
+
|
|
722
|
+
**Built on methodologies from:**
|
|
540
723
|
McKinsey • BCG • Bain • Nancy Duarte • Garr Reynolds • Carmine Gallo
|
|
541
724
|
Chris Anderson • Barbara Minto • Edward Tufte • Robert Cialdini
|
|
542
725
|
|
|
726
|
+
**100% Free • Zero API Keys • Runs Locally • MIT License**
|
|
727
|
+
|
|
728
|
+
Questions? [stuart@isovision.ai](mailto:stuart@isovision.ai)
|
|
729
|
+
|
|
543
730
|
</div>
|
package/bin/cli.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-presentation-master",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "Generate world-class presentations using expert methodologies from Duarte, Reynolds, Gallo, and Anderson. Enforces rigorous quality standards through real visual validation.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|