markupr 2.4.0 → 2.5.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/README.md CHANGED
@@ -1,3 +1,9 @@
1
+ > **This project has moved.** FeedbackFlow has been rebranded and evolved into **[markupr](https://github.com/eddiesanjuan/markupr)** -- with cross-platform support, a CLI, an MCP server for AI coding agents, and an intelligent post-processing pipeline. All future development happens at [github.com/eddiesanjuan/markupr](https://github.com/eddiesanjuan/markupr).
2
+ >
3
+ > **Install:** `npm install -g markupr` | **Download:** [markupr.com](https://markupr.com) | **Releases:** [github.com/eddiesanjuan/markupr/releases](https://github.com/eddiesanjuan/markupr/releases)
4
+
5
+ ---
6
+
1
7
  <p align="center">
2
8
  <img src="src/renderer/assets/logo.svg" alt="markupr Logo" width="120" height="120">
3
9
  </p>
@@ -23,6 +29,7 @@
23
29
  <a href="#why-markupr">Why markupr?</a> |
24
30
  <a href="#features">Features</a> |
25
31
  <a href="#how-it-works">How It Works</a> |
32
+ <a href="#example-output">Examples</a> |
26
33
  <a href="#installation">Installation</a> |
27
34
  <a href="#cli-usage">CLI Usage</a> |
28
35
  <a href="#mcp-server-for-ai-coding-agents">MCP Server</a> |
@@ -170,6 +177,14 @@ idle ─→ starting (5s timeout) ─→ recording (30min max) ─→ stopping (
170
177
 
171
178
  Every state has a maximum duration. A watchdog timer monitors state age and forces recovery if anything gets stuck.
172
179
 
180
+ ## Example Output
181
+
182
+ See what markupr produces:
183
+
184
+ - [Desktop app feedback session](examples/feedback-session-example.md) -- a developer reviewing a dashboard, finding mobile and UX issues
185
+ - [MCP server capture session](examples/mcp-session-example.md) -- an AI coding agent recording a CSS bug via `capture_with_voice`
186
+ - [CLI analysis output](examples/cli-output-example.md) -- `npx markupr analyze` processing a security code review
187
+
173
188
  ## Installation
174
189
 
175
190
  ### macOS
@@ -276,6 +291,7 @@ Process a screen recording into a structured Markdown document with extracted fr
276
291
  | `--output <dir>` | Output directory | `./markupr-output` |
277
292
  | `--whisper-model <path>` | Path to local Whisper model file | Auto-detected in `~/.markupr/whisper-models/` |
278
293
  | `--no-frames` | Skip frame extraction | `false` |
294
+ | `--template <name>` | Output template (`markdown`, `json`, `github-issue`, `linear`, `jira`, `html`) | `markdown` |
279
295
  | `--verbose` | Show detailed progress output | `false` |
280
296
 
281
297
  **Examples:**
@@ -294,6 +310,86 @@ markupr analyze ./screen.mov --audio ./voiceover.wav
294
310
  markupr analyze ./recording.mov --no-frames
295
311
  ```
296
312
 
313
+ #### `markupr watch [directory]`
314
+
315
+ Watch a directory for new screen recordings and auto-process them as they appear. Ideal for continuous feedback workflows.
316
+
317
+ ```bash
318
+ # Watch the current directory
319
+ markupr watch
320
+
321
+ # Watch a specific directory with custom output
322
+ markupr watch ./recordings --output ./reports
323
+
324
+ # Watch with verbose logging
325
+ markupr watch ~/Desktop --verbose
326
+ ```
327
+
328
+ #### `markupr push github <report>`
329
+
330
+ Create GitHub issues from a markupr feedback report. Each feedback item (FB-001, FB-002, etc.) becomes a separate issue with labels and structured markdown.
331
+
332
+ ```bash
333
+ # Create issues from a report (uses gh CLI auth or GITHUB_TOKEN)
334
+ markupr push github ./markupr-output/report.md --repo myorg/myapp
335
+
336
+ # Preview what would be created
337
+ markupr push github ./report.md --repo myorg/myapp --dry-run
338
+
339
+ # Push specific items only
340
+ markupr push github ./report.md --repo myorg/myapp --items FB-001 FB-003
341
+ ```
342
+
343
+ Authentication resolves in order: `--token` flag, `GITHUB_TOKEN` env var, `gh auth token` CLI.
344
+
345
+ #### `markupr push linear <report>`
346
+
347
+ Create Linear issues from a markupr feedback report.
348
+
349
+ ```bash
350
+ # Create issues in a Linear team
351
+ markupr push linear ./report.md --team ENG
352
+
353
+ # Assign to a project with dry run
354
+ markupr push linear ./report.md --team DES --project "Q1 Polish" --dry-run
355
+ ```
356
+
357
+ Set `LINEAR_API_KEY` env var or pass `--token`.
358
+
359
+ ### Output Templates
360
+
361
+ markupr supports multiple output templates for the `analyze` command:
362
+
363
+ | Template | Description |
364
+ |----------|-------------|
365
+ | `markdown` | Default structured Markdown (llms.txt-inspired) |
366
+ | `json` | Machine-readable JSON for integrations |
367
+ | `github-issue` | GitHub-flavored Markdown optimized for issues |
368
+ | `linear` | Linear-optimized issue format |
369
+ | `jira` | Jira-compatible markup |
370
+ | `html` | Self-contained HTML document |
371
+
372
+ ```bash
373
+ # Generate JSON output for automation
374
+ markupr analyze ./recording.mov --template json
375
+
376
+ # Generate GitHub-ready issue format
377
+ markupr analyze ./recording.mov --template github-issue
378
+ ```
379
+
380
+ ### GitHub Action
381
+
382
+ Run markupr in CI to get visual feedback on pull requests. Add the action to your workflow:
383
+
384
+ ```yaml
385
+ - uses: eddiesanjuan/markupr-action@v1
386
+ with:
387
+ video-path: ./test-recording.mov
388
+ output-dir: ./markupr-output
389
+ ```
390
+
391
+ See [markupr-action/README.md](markupr-action/README.md) for full configuration options.
392
+
297
393
  ### Requirements
298
394
 
299
395
  - **Node.js** 18+