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
// Location: ./crates/cpex-core/src/elicitation/hook.rs
// Copyright 2026
// SPDX-License-Identifier: Apache-2.0
// Authors: Teryl Taylor
//
// `ElicitationHook` — the `HookTypeDef` marker for the Elicitation hook
// family. Plugins implement `HookHandler<ElicitationHook>`; the apl-cpex
// bridge dispatches into it to drive a human-in-the-loop step (approval,
// confirmation, step-up, …).
//
// Single hook name: `"elicit"`. The three touch-points (dispatch /
// check / validate) are NOT separate hook names — they share one
// payload shape and are distinguished by `ElicitationPayload::operation`.
// This keeps registration and the plan trivial: one plugin, one entry,
// resolved `name → entry` exactly like delegation's `token.delegate`.
use cratePluginResult;
use ElicitationPayload;
/// Hook name for Elicitation handlers.
pub const HOOK_ELICIT: &str = "elicit";
cratedefine_hook!