standout-dispatch 10.0.0

Command dispatch and routing for clap-based CLIs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
# The Handler Contract

Handlers are shell adapters: they map parsed CLI input to application calls and
return serializable CLI-owned view data. Keep reusable behavior in a CLI-free
library. The handler contract is designed to be **explicit** rather than
permissive, so adapters remain testable and decoupled from output formatting.

---

## Quick Start: The `#[handler]` Macro

For most handlers, use the `#[handler]` macro to write typed adapter functions:

```rust,ignore
use standout_macros::handler;

#[handler]
pub fn list(#[flag] all: bool, #[arg] limit: Option<usize>) -> Result<Vec<Item>, anyhow::Error> {
    storage::list(all, limit)
}
```

The macro leaves `list` alone and adds three items beside it:

| Item | What it is |
| --- | --- |
| `list__handler(&ArgMatches, &CommandContext)` | reads the arguments out of `ArgMatches` and calls `list`. It returns **the annotated return type verbatim** — here `Result<Vec<Item>, anyhow::Error>`, not `HandlerResult<Vec<Item>>` |
| `list__expected_args() -> Vec<ExpectedArg>` | what `App::verify_command` reads |
| `list_Handler` | a unit struct implementing [`Handler`]#the-handler-trait**the registrable item** |

The `Result<T, E>` to `Output::Render` wrap happens inside `list_Handler`'s
`Handler::handle` (through `IntoHandlerResult`), never in `list__handler`
itself. That is the difference the next two tables spell out.

The un-suffixed `handlers::list` is not registrable — it has the wrong
signature by design, so that a test can call it directly. Which of the other
two items you register depends on the method:

| Method | What it takes | What to pass |
| --- | --- | --- |
| `AppBuilder::command_with` | `impl Handler` | `handlers::list_Handler` |
| `GroupBuilder::command` / `command_with`, and therefore `#[derive(Dispatch)]` | a closure returning `HandlerResult<T>` | `handlers::list__handler` |

That second row constrains the return type, and it is the one place the two
registration paths genuinely differ. `list__handler` returns the annotated type
verbatim, so it satisfies `HandlerResult<T>` only when the function was written
`-> Result<Output<T>, E>` (or `-> Result<(), E>`, whose wrapper returns
`HandlerResult<()>`). **A handler annotated `-> Result<T, E>` cannot be
registered through `#[derive(Dispatch)]`**: expansion fails with `expected
list__handler to return Result<Output<_>, Error>, but it returns Result<Items,
Error>`. Write it `-> Result<Output<T>, E>`, or register `list_Handler` through
`AppBuilder::command_with`, where `Handler::handle` applies the wrap for you.

The three return shapes, and the original functions still being callable:

```rust
use standout::cli::{CommandContext, Output};
use standout::handler;

#[derive(serde::Serialize)]
pub struct Items {
    pub names: Vec<String>,
}

/// `Handler::Output` is `Items`; `handle` wraps the value in `Output::Render`.
#[handler]
pub fn list(#[flag] all: bool) -> Result<Items, anyhow::Error> {
    let mut names = vec!["ssh".to_string()];
    if all {
        names.push("cron".to_string());
    }
    Ok(Items { names })
}

/// `Handler::Output` is `Items`; the `Output` passes through untouched.
#[handler]
pub fn about(#[ctx] _ctx: &CommandContext) -> Result<Output<Items>, anyhow::Error> {
    Ok(Output::Render(Items { names: vec!["unitctl".to_string()] }))
}

/// `Handler::Output` is `()`; `handle` produces `Output::Silent`.
#[handler]
pub fn reload(#[flag] _force: bool) -> Result<(), anyhow::Error> {
    Ok(())
}

fn main() {
    // No ArgMatches, no dispatcher: the annotated function is what a unit test calls.
    assert_eq!(list(true).unwrap().names, ["ssh", "cron"]);
    reload(false).unwrap();
}
```

Every `#[dispatch(…)]` and `#[handler]` attribute is listed in the
[`#[dispatch(…)]` and `#[handler]` reference](../../../topics/dispatch-attributes.md).

**Parameter Annotations:**

| Annotation            | Type              | Extraction                    |
| --------------------- | ----------------- | ----------------------------- |
| `#[flag]`             | `bool`            | `matches.get_flag("name")`    |
| `#[flag(name = "x")]` | `bool`            | `matches.get_flag("x")`       |
| `#[arg]`              | `T`               | Required argument             |
| `#[arg]`              | `Option<T>`       | Optional argument             |
| `#[arg]`              | `Vec<T>`          | Multiple values               |
| `#[arg(name = "x")]`  | `T`               | Argument with custom CLI name |
| `#[ctx]`              | `&CommandContext` | Access to context             |
| `#[matches]`          | `&ArgMatches`     | Raw matches (escape hatch)    |

Without `name = "x"`, the argument id is the parameter name with underscores
turned into hyphens: `no_legend` reads the argument id `no-legend`. Clap's own
derive ids an argument by the field name it comes from, so a clap-derive
`no_legend` field declares `#[arg(id = "no-legend")]` to meet the handler, or
the handler parameter takes the field's id with `#[flag(name = "no_legend")]`.
`app.verify_command(&cmd)` reports the mismatch instead of leaving it to a
runtime `get_flag` panic. A parameter named with a raw identifier drops the
`r#` first, the way clap's derive drops it from a field name: `r#type` reads
the argument id `type`.

**Return Type Handling:** the function must return `Result<T, E>`; the macro
rejects anything else with `handler must return Result<T, E>`. What `T` is
decides what `Handler::Output` becomes and whether anything is wrapped.

| Annotated return type | `Handler::Output` | What `handle` produces |
| --- | --- | --- |
| `Result<T, E>` | `T` | `Ok(value)` wrapped in `Output::Render(value)` |
| `Result<Output<T>, E>` (that is, `HandlerResult<T>`) | `T` | the `Output` you returned, unchanged |
| `Result<(), E>` | `()` | `Output::Silent` |

> **Testing:** The original function is preserved, so you can test directly: `list(true, Some(10))`.

---

## The Handler Trait

```rust,ignore
pub trait Handler {
    type Output: Serialize;
    fn handle(&mut self, matches: &ArgMatches, ctx: &CommandContext) -> HandlerResult<Self::Output>;
}
```

Key characteristics:

- **Mutable self**: `&mut self` allows direct state modification
- **Output must be Serialize**: Needed for JSON/YAML modes and template context

Implementing the trait directly is useful when your handler needs internal state—database connections, configuration, caches, etc.

### Example: Struct Handler with State

```rust,ignore
use standout_dispatch::{Handler, Output, CommandContext, HandlerResult};
use clap::ArgMatches;
use serde::Serialize;

struct CachingDatabase {
    connection: Connection,
    cache: HashMap<String, Vec<Row>>,
}

impl CachingDatabase {
    fn query_with_cache(&mut self, sql: &str) -> Result<Vec<Row>, Error> {
        if let Some(cached) = self.cache.get(sql) {
            return Ok(cached.clone());
        }
        let result = self.connection.execute(sql)?;
        self.cache.insert(sql.to_string(), result.clone());
        Ok(result)
    }
}

impl Handler for CachingDatabase {
    type Output = Vec<Row>;

    fn handle(&mut self, matches: &ArgMatches, _ctx: &CommandContext) -> HandlerResult<Vec<Row>> {
        let query: &String = matches.get_one("query").unwrap();
        let rows = self.query_with_cache(query)?;  // &mut self works!
        Ok(Output::Render(rows))
    }
}
```

---

## Closure Handlers

Most handlers are simple closures using `FnHandler`:

```rust,ignore
use standout_dispatch::{FnHandler, Output, HandlerResult};

let mut counter = 0;

let handler = FnHandler::new(move |_matches, _ctx| {
    counter += 1;  // Mutation works!
    Ok(Output::Render(counter))
});
```

The closure signature:

```rust,ignore
fn(&ArgMatches, &CommandContext) -> HandlerResult<T>
where T: Serialize
```

Closures are `FnMut`, allowing captured variables to be mutated.

---

## SimpleFnHandler (No Context Needed)

When your handler doesn't need `CommandContext`, use `SimpleFnHandler` for a cleaner signature:

```rust,ignore
use standout_dispatch::SimpleFnHandler;

let handler = SimpleFnHandler::new(|matches| {
    let verbose = matches.get_flag("verbose");
    let items = storage::list()?;
    Ok(ListResult { items, verbose })
});
```

The closure signature:

```rust,ignore
fn(&ArgMatches) -> Result<T, E>
where T: Serialize, E: Into<anyhow::Error>
```

`SimpleFnHandler` automatically wraps the result in `Output::Render` via `IntoHandlerResult`.

---

## IntoHandlerResult Trait

The `IntoHandlerResult` trait enables handlers to return `Result<T, E>` directly instead of `HandlerResult<T>`:

```rust,ignore
use standout_dispatch::IntoHandlerResult;

// Before: explicit Output wrapping
fn list(_m: &ArgMatches, _ctx: &CommandContext) -> HandlerResult<Vec<Item>> {
    let items = storage::list()?;
    Ok(Output::Render(items))
}

// After: automatic conversion
fn list(_m: &ArgMatches, _ctx: &CommandContext) -> impl IntoHandlerResult<Vec<Item>> {
    storage::list()  // Result<Vec<Item>, Error> auto-converts
}
```

The trait is implemented for:

- `Result<T, E>` where `E: Into<anyhow::Error>` → wraps `Ok(t)` in `Output::Render(t)`
- `HandlerResult<T>` → passes through unchanged

This is used internally by `SimpleFnHandler` and the `#[handler]` macro.

---

## HandlerResult

`HandlerResult<T>` is a standard `Result` type:

```rust,ignore
pub type HandlerResult<T> = Result<Output<T>, anyhow::Error>;
```

The `?` operator works naturally for error propagation:

```rust,ignore
fn list_handler(matches: &ArgMatches, ctx: &CommandContext) -> HandlerResult<Items> {
    let items = storage::load()?;           // Propagates errors
    let filtered = filter_items(&items)?;   // Propagates errors
    Ok(Output::Render(Items { filtered }))
}
```

### Owner-declared failures

`AppFailure` and `ExternalFailure` carry a nonzero status and a stderr payload
the framework writes verbatim, through the same `HandlerResult` seam
([Error Handling](../../../topics/error-handling.md#an-application-owned-status-and-diagnostic)):

```rust,ignore
// The application's own specification pins the status and the line.
Err(AppFailure::new(1, "ghlike: repository not found: demo/gamma\n")?.into())

// A delegated executable decided both, and the handler is relaying them.
Err(ExternalFailure::new(128, git_stderr)?.into())
```

A *successful* run declares a status through the output, not through an error:
`Output::Render(data).with_exit_status(ExitStatus::from(2))`
([Execution Outcomes](../../../topics/execution-outcomes.md#status-and-streams)).

---

## The Output Enum

`Output<T>` represents what a handler produces:

```rust,ignore
#[non_exhaustive]
pub enum Output<T: Serialize> {
    Render(T),
    Silent,
    Binary { data: Vec<u8>, filename: String },
    Artifact(Artifact<T>),
    WithStatus { output: Box<Output<T>>, status: ExitStatus },
}
```

`Output` is `#[non_exhaustive]`: matches on it need a `_` arm so later shapes
can be added without breaking downstream code. `WithStatus` is built by
`with_exit_status` and wraps a `Render` or `Silent` output together with the
exit status the handler chose; `split_exit_status()` takes it apart,
`exit_status()` reads it (`SUCCESS` when none was declared), `map_render(f)`
reaches the rendered value through it, and the `is_*` predicates answer for the
wrapped output. Declaring a status on `Binary` or `Artifact` is a render error.

### Output::Render(T)

The common case. Data is passed to the render function:

```rust,ignore
#[derive(Serialize)]
struct ListResult {
    items: Vec<Item>,
    total: usize,
}

fn list_handler(_m: &ArgMatches, _ctx: &CommandContext) -> HandlerResult<ListResult> {
    let items = storage::list()?;
    Ok(Output::Render(ListResult {
        total: items.len(),
        items,
    }))
}
```

### Output::Silent

No output produced. Useful for commands with side effects only:

```rust,ignore
fn delete_handler(matches: &ArgMatches, _ctx: &CommandContext) -> HandlerResult<()> {
    let id: &String = matches.get_one("id").unwrap();
    storage::delete(id)?;
    Ok(Output::Silent)
}
```

Silent behavior:

- Post-output hooks still receive `RenderedOutput::Silent`
- Render function is not called
- Nothing prints to stdout

### Output::Binary

Raw bytes for file output:

```rust,ignore
fn export_handler(matches: &ArgMatches, _ctx: &CommandContext) -> HandlerResult<()> {
    let data = generate_report()?;
    let pdf_bytes = render_to_pdf(&data)?;

    Ok(Output::Binary {
        data: pdf_bytes,
        filename: "report.pdf".into(),
    })
}
```

Binary output bypasses the render function entirely.

The filename is a **hint for the caller**, not permission to write. Without
`--output-file-path`, `run()` sends the bytes to stdout and touches no file. If
you want the framework to write the suggested destination, use `Output::Artifact`
— that opt-in is the whole difference between the two shapes.

### Output::Artifact

Owned bytes plus an application-owned report, for commands that produce a file
*and* have something to say about it. `Output::Binary` cannot carry a report,
and nothing renders after its write, so a command that wants to say "exported 12
rows to /tmp/report.csv (2 warnings)" would otherwise have to write the file
itself — pulling destination policy back into the application core.

```rust,ignore
use standout::cli::{Artifact, HandlerResult, Output};

#[derive(Serialize)]
struct ExportReport {
    exported: usize,
    warnings: Vec<Warning>,
}

fn export_handler(_m: &ArgMatches, _ctx: &CommandContext) -> HandlerResult<ExportReport> {
    let export = core::export_csv()?;   // bytes + facts, no filesystem

    Ok(Output::Artifact(
        Artifact::new(export.csv)
            .suggest_destination(export.suggested_filename)
            .with_report(ExportReport {
                exported: export.rows,
                warnings: export.warnings,
            }),
    ))
}
```

#### Artifact builder

`Artifact<T>` is `T`, the report type, plus a byte payload and two opt-in
destination hints:

| Method | Purpose |
| --- | --- |
| `Artifact::new(bytes: impl Into<Vec<u8>>)` | Construct with the payload bytes. An empty vector is legal — a zero-byte artifact writes an empty file (or nothing to stdout). |
| `.suggest_destination(path: impl Into<PathBuf>)` | Offer a default write path (destination policy step 2). |
| `.allow_stdout()` | Permit the framework to fall back to stdout (step 3). |
| `.with_report(report: T)` | Attach the report rendered after the write. |

When the report is non-empty, the framework appends a newline after it via
`writeln!`; it does not strip or collapse a newline the report already ends
with, so a report that ends in `\n` produces a blank line. An absent or empty
report emits nothing — no newline at all. A destination must still be selected first: an `Artifact` that suggests
none, does not `.allow_stdout()`, and gets no `--output-file-path` fails with a
stderr diagnostic rather than writing silently. Once a destination is selected
and the write succeeds, a zero-byte artifact with no report adds nothing to
either stream.

Who owns what:

| Concern | Owner |
| --- | --- |
| Artifact bytes | Application |
| Suggested destination | Application (a suggestion) |
| Semantic report and warning taxonomy | Application |
| Destination selection | Framework |
| The write and its failure | Framework |
| Receipt (completed destination) | Framework |

#### Destination policy

Standout selects the destination deterministically:

1. the explicit `--output-file-path` override;
2. the artifact's `suggest_destination(...)`, if the application opted in;
3. stdout, if the application opted in with `allow_stdout()`.

If none applies, the run fails with `FinalWrite(Artifact)` rather than inventing
a file or dropping the bytes. All three steps share that one failure path.

#### Write first, report second

Standout writes, then renders the report from a fixed envelope:

```json
{
  "report": { "exported": 12, "warnings": [] },
  "receipt": { "destination": "/tmp/report.csv", "stdout": false, "byte_count": 480 }
}
```

So a template can say what only the framework knows:

```jinja
Exported {{ report.exported }} rows to {{ receipt.destination }}
```

The envelope shape is fixed (`report` + `receipt`) whatever the report's type,
so no application key can collide with the receipt. Structured modes serialize
the same envelope. A failed write renders nothing: success cannot outrun the
write that justifies it.

#### The report channel

Mixing a report into the bytes would corrupt them, so the channel follows the
destination:

| Artifact destination | Report goes to |
| --- | --- |
| File | stdout |
| Stdout (`allow_stdout()`) | stderr |

#### Hooks and artifacts

Post-dispatch hooks see the report as ordinary handler data. Post-output hooks
see `RenderedOutput::Artifact` and can still transform the bytes or the report
via `as_artifact_mut()`. Hooks never perform the write — that stays framework-
owned, which is what keeps the failure path single and the report honest.

Bytes are owned; streaming is deliberately not part of this contract.

---

## CommandContext

`CommandContext` provides execution environment information and state access:

```rust,ignore
pub struct CommandContext {
    pub command_path: Vec<String>,
    pub app_state: Rc<Extensions>,
    pub extensions: Extensions,
    pub stream: EntryStream,
}
```

**command_path**: The subcommand chain as a vector, e.g., `["db", "migrate"]`. Useful for logging or conditional logic.

**app_state**: Shared, immutable state configured at app build time via `AppBuilder::app_state()`. Held in an `Rc<Extensions>` for cheap cloning; the dispatch pipeline is single-threaded, so app state is not `Send`/`Sync`. Use for database connections, configuration, API clients.

**extensions**: Per-request, mutable state injected by pre-dispatch hooks. Use for user sessions, request IDs, computed values.

**stream** (`ctx.stream()`): The run's entry stream. `emit(&value)` writes the value as one JSON line when the consuming framework resolved a stream output mode and does nothing otherwise; `is_live()` says which. The dispatch layer never writes to it itself.

> For comprehensive coverage of state management, see [App State and Extensions]app-state.md.

---

## State Access: App State vs Extensions

Handlers access state through two distinct mechanisms with different semantics:

| Aspect         | `ctx.app_state`               | `ctx.extensions`           |
| -------------- | ----------------------------- | -------------------------- |
| **Mutability** | Immutable (`&`)               | Mutable (`&mut`)           |
| **Lifetime**   | App lifetime                  | Per-request                |
| **Set by**     | `AppBuilder::app_state()`     | Pre-dispatch hooks         |
| **Use for**    | Database, Config, API clients | User sessions, request IDs |

### App State (Shared Resources)

Configure long-lived resources at build time:

```rust,ignore
App::builder()
    .app_state(Database::connect()?)
    .app_state(Config::load()?)
    .command("list", list_handler, template)?
    .build()?
```

Access in handlers via `ctx.app_state`:

```rust,ignore
fn list_handler(matches: &ArgMatches, ctx: &CommandContext) -> HandlerResult<Vec<Item>> {
    let db = ctx.app_state.get_required::<Database>()?;
    let config = ctx.app_state.get_required::<Config>()?;

    let items = db.query_items(config.max_results)?;
    Ok(Output::Render(items))
}
```

### Extensions (Per-Request State)

Pre-dispatch hooks inject request-scoped state:

```rust,ignore
use standout_dispatch::{Hooks, HookError};

struct UserScope { user_id: String, permissions: Vec<String> }

let hooks = Hooks::new()
    .pre_dispatch(|matches, ctx| {
        // Can read app_state to set up per-request state
        let db = ctx.app_state.get_required::<Database>()?;

        let user_id = matches.get_one::<String>("user").unwrap().clone();
        let permissions = db.get_permissions(&user_id)?;

        ctx.extensions.insert(UserScope { user_id, permissions });
        Ok(())
    });
```

Handlers retrieve from extensions:

```rust,ignore
fn list_handler(matches: &ArgMatches, ctx: &CommandContext) -> HandlerResult<Vec<Item>> {
    let db = ctx.app_state.get_required::<Database>()?;       // shared
    let scope = ctx.extensions.get_required::<UserScope>()?;  // per-request

    let items = db.list_for_user(&scope.user_id)?;
    Ok(Output::Render(items))
}
```

### Extensions API

Both `app_state` and `extensions` use the same `Extensions` type with these methods:

| Method              | Description                                     |
| ------------------- | ----------------------------------------------- |
| `insert<T>(value)`  | Insert a value, returns previous if any         |
| `get<T>()`          | Get immutable reference, returns `Option<&T>`   |
| `get_required<T>()` | Get reference or return error if missing        |
| `get_mut<T>()`      | Get mutable reference, returns `Option<&mut T>` |
| `remove<T>()`       | Remove and return value                         |
| `contains<T>()`     | Check if type exists                            |
| `len()`             | Number of stored values                         |
| `is_empty()`        | True if no values stored                        |
| `clear()`           | Remove all values                               |

Use `get_required` for mandatory dependencies (fails fast with clear error), `get` for optional ones.

### When to Use Which

**Use App State for:**

- Database connections — expensive to create, should be pooled
- Configuration — loaded once at startup
- API clients — shared HTTP clients with connection pooling

**Use Extensions for:**

- User context — current user, session, permissions
- Request metadata — request ID, timing, correlation ID
- Transient state — data computed by one hook, used by handler

### The Two-State Pattern

The separation exists because:

1. **Closure capture doesn't work with `#[derive(Dispatch)]`** — macro-generated dispatch calls handlers with a fixed signature
2. **App-level resources shouldn't be created per-request** — database pools and config are expensive
3. **Per-request state needs mutable injection** — hooks compute values at runtime

```rust,ignore
// App state: configured once at build time
App::builder()
    .app_state(Database::connect()?)  // Shared via Rc
    .hooks("users.list", Hooks::new()
        .pre_dispatch(|matches, ctx| {
            // Extensions: computed per-request, can use app_state
            let db = ctx.app_state.get_required::<Database>()?;
            let user = authenticate(matches, db)?;
            ctx.extensions.insert(user);
            Ok(())
        }))?
```

> For comprehensive coverage of state management patterns, see [App State and Extensions]app-state.md.

---

## Accessing CLI Arguments

The `ArgMatches` parameter provides access to parsed arguments through clap's standard API:

```rust,ignore
fn handler(matches: &ArgMatches, _ctx: &CommandContext) -> HandlerResult<Data> {
    // Flags
    let verbose = matches.get_flag("verbose");

    // Required options
    let name: &String = matches.get_one("name").unwrap();

    // Optional values
    let limit: Option<&u32> = matches.get_one("limit");

    // Multiple values
    let tags: Vec<&String> = matches.get_many("tags")
        .map(|v| v.collect())
        .unwrap_or_default();

    Ok(Output::Render(Data { ... }))
}
```

For subcommands, you work with the `ArgMatches` for your specific command level.

---

## Testing Handlers

Because handlers have explicit inputs and outputs, their adapter behavior is
straightforward to test directly. Test validation, filtering, and state
transitions through the CLI-free library instead:

```rust,ignore
#[test]
fn test_list_handler() {
    let cmd = Command::new("test")
        .arg(Arg::new("verbose").long("verbose").action(ArgAction::SetTrue));
    let matches = cmd.try_get_matches_from(["test", "--verbose"]).unwrap();

    let ctx = CommandContext {
        command_path: vec!["list".into()],
        ..Default::default()
    };

    let result = list_handler(&matches, &ctx);

    assert!(result.is_ok());
    if let Ok(Output::Render(data)) = result {
        assert!(data.verbose);
    }
}
```

No mocking frameworks needed—construct `ArgMatches` with clap, create a `CommandContext`, call your handler, assert on the result.

### Testing with App State

When handlers depend on app_state, inject test fixtures:

```rust,ignore
#[test]
fn test_handler_with_app_state() {
    use std::rc::Rc;

    // Create test fixtures
    let mock_db = MockDatabase::with_items(vec![
        Item { id: "1", name: "Test" }
    ]);

    // Build app_state with test data
    let mut app_state = Extensions::new();
    app_state.insert(mock_db);

    let ctx = CommandContext {
        command_path: vec!["list".into()],
        app_state: Rc::new(app_state),
        ..Default::default()
    };

    let cmd = Command::new("test");
    let matches = cmd.try_get_matches_from(["test"]).unwrap();

    let result = list_handler(&matches, &ctx);
    assert!(result.is_ok());
}
```

### Testing Handlers with Mutable State

Handler tests can verify state mutation across calls:

```rust,ignore
#[test]
fn test_handler_state_mutation() {
    struct Counter { count: u32 }

    impl Handler for Counter {
        type Output = u32;
        fn handle(&mut self, _m: &ArgMatches, _ctx: &CommandContext) -> HandlerResult<u32> {
            self.count += 1;
            Ok(Output::Render(self.count))
        }
    }

    let mut handler = Counter { count: 0 };
    let cmd = Command::new("test");
    let matches = cmd.try_get_matches_from(["test"]).unwrap();
    let ctx = CommandContext {
        command_path: vec!["count".into()],
        ..Default::default()
    };

    // State accumulates across calls
    let _ = handler.handle(&matches, &ctx);
    let _ = handler.handle(&matches, &ctx);
    let result = handler.handle(&matches, &ctx);

    assert!(matches!(result, Ok(Output::Render(3))));
}
```