Skip to content

Commit f9564f1

Browse files
committed
fix(recipes): drop no-op --summary flag from usage/ledger examples
The CLI's usage/ledger commands select output shape via --mode (summary|search|export_file), and summary is the default. --summary is not a recognized flag: it falls through to positional args and is silently ignored. All five recipes' CLI audit examples passed --summary, teaching a flag that does nothing. Drop it (summary is the default) across crypto-monitoring, data-analysis, developer-automation, finance-research, and risk-compliance. Surfaced by the #128 review.
1 parent aa8ba7b commit f9564f1

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

recipes/crypto-monitoring/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ qveris init \
2222
Use audit commands after execution:
2323

2424
```bash
25-
qveris usage --execution-id "exec_..." --summary --json
26-
qveris ledger --limit 5 --summary --json
25+
qveris usage --execution-id "exec_..." --json
26+
qveris ledger --limit 5 --json
2727
```
2828

2929
## Python SDK

recipes/data-analysis/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ qveris init \
2222
Audit the sample call:
2323

2424
```bash
25-
qveris usage --execution-id "exec_..." --summary --json
26-
qveris ledger --limit 5 --summary --json
25+
qveris usage --execution-id "exec_..." --json
26+
qveris ledger --limit 5 --json
2727
```
2828

2929
## Python SDK

recipes/developer-automation/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ qveris init \
2222
Audit the call:
2323

2424
```bash
25-
qveris usage --execution-id "exec_..." --summary --json
26-
qveris ledger --limit 5 --summary --json
25+
qveris usage --execution-id "exec_..." --json
26+
qveris ledger --limit 5 --json
2727
```
2828

2929
## Python SDK

recipes/finance-research/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ qveris init \
2424
After a call returns an `execution_id`, audit charge outcome:
2525

2626
```bash
27-
qveris usage --execution-id "exec_..." --summary --json
28-
qveris ledger --limit 5 --summary --json
27+
qveris usage --execution-id "exec_..." --json
28+
qveris ledger --limit 5 --json
2929
```
3030

3131
## Python SDK

recipes/risk-compliance/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ qveris init \
2222
Audit the execution after you receive `execution_id`:
2323

2424
```bash
25-
qveris usage --execution-id "exec_..." --summary --json
26-
qveris ledger --limit 5 --summary --json
25+
qveris usage --execution-id "exec_..." --json
26+
qveris ledger --limit 5 --json
2727
```
2828

2929
## Python SDK

0 commit comments

Comments
 (0)