claude-presentation-master 2.1.0 → 2.1.1
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 +69 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -192,22 +192,88 @@ if (!factCheck.passed) {
|
|
|
192
192
|
|
|
193
193
|
## Installation
|
|
194
194
|
|
|
195
|
+
### Option 1: npx (Quick One-Off — No Install Needed)
|
|
196
|
+
|
|
197
|
+
Run directly without installing anything. Perfect for trying it out or one-off presentations:
|
|
198
|
+
|
|
195
199
|
```bash
|
|
200
|
+
# Generate a presentation instantly (downloads temporarily, runs, cleans up)
|
|
201
|
+
npx claude-presentation-master generate notes.md -m keynote -f html
|
|
202
|
+
|
|
203
|
+
# Generate a consulting deck as PowerPoint
|
|
204
|
+
npx claude-presentation-master generate strategy.md --type consulting_deck -f pptx
|
|
205
|
+
|
|
206
|
+
# See all options
|
|
207
|
+
npx claude-presentation-master --help
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
**When to use npx:**
|
|
211
|
+
- Quick one-off presentation
|
|
212
|
+
- Trying out the tool before installing
|
|
213
|
+
- CI/CD pipelines where you don't want permanent installs
|
|
214
|
+
- Sharing a command that "just works" for anyone
|
|
215
|
+
|
|
216
|
+
---
|
|
217
|
+
|
|
218
|
+
### Option 2: npm install (For Regular Use)
|
|
219
|
+
|
|
220
|
+
Install once, use anytime with the short `cpm` command:
|
|
221
|
+
|
|
222
|
+
```bash
|
|
223
|
+
# Install globally (recommended for regular use)
|
|
224
|
+
npm install -g claude-presentation-master
|
|
225
|
+
|
|
226
|
+
# Now use the short command anywhere
|
|
227
|
+
cpm generate notes.md -m keynote -f html
|
|
228
|
+
cpm generate strategy.md --type investment_banking -f pptx
|
|
229
|
+
cpm info
|
|
230
|
+
```
|
|
231
|
+
|
|
232
|
+
**Or install as a project dependency:**
|
|
233
|
+
|
|
234
|
+
```bash
|
|
235
|
+
# In your project directory
|
|
196
236
|
npm install claude-presentation-master
|
|
237
|
+
|
|
238
|
+
# Use programmatically in your code (see below)
|
|
197
239
|
```
|
|
198
240
|
|
|
199
|
-
**
|
|
241
|
+
**When to use npm install:**
|
|
242
|
+
- You create presentations regularly
|
|
243
|
+
- You want the short `cpm` command
|
|
244
|
+
- You're building it into a Claude Code workflow
|
|
245
|
+
- You want to use the TypeScript API in your code
|
|
246
|
+
|
|
247
|
+
---
|
|
248
|
+
|
|
249
|
+
### Optional: Visual Testing
|
|
250
|
+
|
|
251
|
+
For Playwright-based visual regression testing (not required for generation):
|
|
252
|
+
|
|
200
253
|
```bash
|
|
201
254
|
npx playwright install chromium
|
|
202
255
|
```
|
|
203
256
|
|
|
204
|
-
|
|
257
|
+
**No API keys. No subscriptions. Zero cost.**
|
|
205
258
|
|
|
206
259
|
---
|
|
207
260
|
|
|
208
261
|
## Quick Start
|
|
209
262
|
|
|
210
|
-
### From the Command Line
|
|
263
|
+
### From the Command Line (npx)
|
|
264
|
+
|
|
265
|
+
```bash
|
|
266
|
+
# One-liner: Generate keynote from markdown (no install needed)
|
|
267
|
+
npx claude-presentation-master generate notes.md -m keynote -f html
|
|
268
|
+
|
|
269
|
+
# Generate consulting deck
|
|
270
|
+
npx claude-presentation-master generate strategy.md --type consulting_deck -f pptx
|
|
271
|
+
|
|
272
|
+
# Generate IB pitchbook with both formats
|
|
273
|
+
npx claude-presentation-master generate deal.md --type investment_banking -f html,pptx -o ./output
|
|
274
|
+
```
|
|
275
|
+
|
|
276
|
+
### From the Command Line (after npm install -g)
|
|
211
277
|
|
|
212
278
|
```bash
|
|
213
279
|
# TED-style keynote presentation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-presentation-master",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
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",
|