package keyseq
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
Deterministic planner for human-like typing
Install
dune-project
Dependency
Authors
Maintainers
Sources
v0.1.0.tar.gz
md5=646a1d3bab24631f8459ae5f2c37578f
sha512=5001a58307d0ccaf20ca4b198f52d5ccfdf1b62ed6b0a9acab280fc147ecddd9bea0a39ace0933d1dc858a6aa981d06609e40e75225cef8392cdb8be96df9a09
Description
keyseq turns a string into a deterministic sequence of typing events — insert, delete, delay, idle — for a renderer to play back. All randomness is explicit: the same config, random state, and input always produce the same output.
README
keyseq
Deterministic planner for human-like typing. Turns a string into a sequence of typing events — insert, delete, delay, idle — for a renderer to play back.

Requirements
- OCaml ≥ 4.14 (uses
String.get_utf_8_uchar).
Install
opam install keyseqUse
let state = Random.State.make [| 1 |] in
match Keyseq.plan Keyseq.default_config state "Hello, world." with
| Ok events -> Keyseq_terminal.run events
| Error (Keyseq.Invalid_utf8 offset) ->
Printf.eprintf "invalid UTF-8 at byte %d\n" offsetSee examples/demo.ml for a complete, runnable example.
Behavior
Sleepis an ordinary inter-character delay.Idleis a longer pause, following a sentence-ending. ! ?, during which a renderer may animate the cursor.- Mid-clause punctuation (
, ; : —) gets aSleeppause only, noIdle. - Typos are only generated for ASCII letters and Cyrillic-block letters; nothing else is ever mistyped, regardless of
typo_rate. - All randomness is explicit: callers pass a
Random.State.t, and the library never callsRandom.self_init. Same config, same unconsumed state, same input text — same output, every time.
Failure modes
Keyseq.planreturnsError (Invalid_utf8 offset)if the input isn't valid UTF-8.offsetis a byte offset.Keyseq.planraisesInvalid_argumentifconfigviolates its own preconditions (e.g.max_delay < min_delay) — this is a programmer error, not an input-validation failure.
License
ISC. See LICENSE.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page