@@ -45,7 +45,7 @@ Workflow:
4545 3. Or export, edit files, then replay:
4646 sectool proxy export <flow_id>
4747 # edit .sectool/requests/<bundle_id>/body
48- sectool replay send --bundle .sectool/requests/ <bundle_id>
48+ sectool replay send --bundle <bundle_id>
4949
5050---
5151
@@ -55,7 +55,7 @@ replay send [options]
5555
5656 Input sources (exactly one required):
5757 --flow <flow_id> replay from proxy history
58- --bundle <path > replay from exported bundle directory
58+ --bundle <bundle_id > replay from exported bundle (from proxy export)
5959 --file <path> replay from raw HTTP file (- for stdin)
6060
6161 Request modifications (combine multiple):
@@ -88,7 +88,7 @@ replay send [options]
8888 sectool replay send --flow f7k2x --set-header "Authorization: Bearer tok"
8989 sectool replay send --flow f7k2x --path /api/v2/users --set-query "id=123"
9090 sectool replay send --flow f7k2x --set-json "user.role=admin"
91- sectool replay send --bundle .sectool/requests/ abc123
91+ sectool replay send --bundle abc123
9292 sectool replay send --file request.http --body payload
9393
9494 Output: Markdown with replay_id, status, headers, body preview
@@ -119,7 +119,7 @@ func parseSend(args []string) error {
119119
120120 fs .DurationVar (& timeout , "timeout" , 30 * time .Second , "client-side timeout" )
121121 fs .StringVar (& flow , "flow" , "" , "flow_id to replay from proxy history" )
122- fs .StringVar (& bundle , "bundle" , "" , "path to request bundle directory " )
122+ fs .StringVar (& bundle , "bundle" , "" , "bundle_id from proxy export " )
123123 fs .StringVar (& file , "file" , "" , "path to request.http file (- for stdin)" )
124124 fs .StringVar (& body , "body" , "" , "path to body file (use with --file)" )
125125 fs .StringVar (& target , "target" , "" , "override target URL (scheme://host:port)" )
@@ -142,7 +142,7 @@ Send a request through the HTTP backend.
142142
143143Input sources (exactly one required):
144144 --flow <flow_id> Replay from proxy history (get flow_id from 'sectool proxy list')
145- --bundle <path> Replay from exported bundle (create with 'sectool proxy export')
145+ --bundle <bundle_id> Replay from exported bundle (create with 'sectool proxy export')
146146 --file <path> Replay from raw HTTP file (- for stdin)
147147
148148File format (--file):
0 commit comments