Skip to content

Commit d264254

Browse files
eddiesanjuanclaude
andcommitted
fix: correct CLI command case in README (markupR → markupr)
The npm binary is lowercase `markupr` but README examples showed `markupR`. Users copying these commands would get "command not found" on case-sensitive systems. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2b2aefe commit d264254

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -183,32 +183,32 @@ npm install -g markupr
183183

184184
### Commands
185185

186-
**`markupR analyze <video>`** -- Process an existing screen recording into structured Markdown.
186+
**`markupr analyze <video>`** -- Process an existing screen recording into structured Markdown.
187187

188188
```bash
189-
markupR analyze ./bug-demo.mov
190-
markupR analyze ./recording.mov --output ./reports
191-
markupR analyze ./recording.mov --template github-issue
192-
markupR analyze ./recording.mov --no-frames # transcript only
189+
markupr analyze ./bug-demo.mov
190+
markupr analyze ./recording.mov --output ./reports
191+
markupr analyze ./recording.mov --template github-issue
192+
markupr analyze ./recording.mov --no-frames # transcript only
193193
```
194194

195-
**`markupR watch [directory]`** -- Watch for new recordings and auto-process them.
195+
**`markupr watch [directory]`** -- Watch for new recordings and auto-process them.
196196

197197
```bash
198-
markupR watch ~/Desktop --output ./reports
198+
markupr watch ~/Desktop --output ./reports
199199
```
200200

201-
**`markupR push github <report>`** -- Create GitHub issues from a feedback report.
201+
**`markupr push github <report>`** -- Create GitHub issues from a feedback report.
202202

203203
```bash
204-
markupR push github ./report.md --repo myorg/myapp
205-
markupR push github ./report.md --repo myorg/myapp --dry-run
204+
markupr push github ./report.md --repo myorg/myapp
205+
markupr push github ./report.md --repo myorg/myapp --dry-run
206206
```
207207

208-
**`markupR push linear <report>`** -- Create Linear issues from a feedback report.
208+
**`markupr push linear <report>`** -- Create Linear issues from a feedback report.
209209

210210
```bash
211-
markupR push linear ./report.md --team ENG
211+
markupr push linear ./report.md --team ENG
212212
```
213213

214214
### Output Templates

0 commit comments

Comments
 (0)