From 7390272cb9bdb908f76768c3767838f9bb6a9efb Mon Sep 17 00:00:00 2001 From: milldr Date: Fri, 22 May 2026 14:31:53 -0400 Subject: [PATCH] docs(readme): add recipes command documentation --- README.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/README.md b/README.md index 1612549..9bdaa10 100644 --- a/README.md +++ b/README.md @@ -283,6 +283,33 @@ crono diary -r 7d --json # → [{"date":"2026-02-11","calories":1847,"protein":168,"carbs":142,"fat":58}, ...] ``` +### `crono recipes` + +List your custom recipes from Cronometer. + +```bash +crono recipes [options] +``` + +**Options:** + +| Flag | Long | Description | +| ---- | -------- | -------------- | +| | `--json` | Output as JSON | + +**Examples:** + +```bash +# List all custom recipes +crono recipes +# → Chicken Stir Fry +# → Overnight Oats +# → 2 recipes + +# JSON output for scripting +crono recipes --json +``` + ### `crono export` Export data directly from Cronometer's API — no browser automation, much faster than `diary` or `weight`.