Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.joggr.ai/llms.txt

Use this file to discover all available pages before exploring further.

This command is called automatically by Joggr skills like /gg-review. You typically don’t need to run it directly — the skill handles the full lifecycle for you.

Flags

FlagTypeDefaultDescription
--reviewbooleanfalseOpen in review mode
--filestringPath to the file to review
--portnumberRandom (free)Override port instead of auto-assigning

What it does

  1. Resolves the git repo root
  2. Finds a free port (or uses --port)
  3. Starts a local Hono server serving the desktop review app
  4. Opens your browser to the review UI
  5. Blocks until you submit the review or press Ctrl+C
  6. Prints formatted markdown feedback to stdout
  7. Shuts down the server

Examples

Review a file directly:
jog app --review --file docs/guide.md
Use a fixed port:
jog app --review --file docs/guide.md --port 4200

Exit codes

CodeMeaning
0Review completed
1Error (server or input)
130Interrupted (Ctrl+C)

Troubleshooting

Copy the URL printed in the terminal and paste it into your browser manually. This can happen on headless environments or when no default browser is configured.
Another process is using the auto-assigned port. Pass a specific port with --port: jog app --review --file path/to/file.md --port 4200
The command must be run inside a git repository. Make sure you’re in a repo directory and that git rev-parse --show-toplevel works.