Loading...
Loading...
Converts an input document (.txt, .md, .pdf, .docx) into a structured RSVP token stream with ORP alignment and configurable WPM. Use when a user wants to speed-read a document, prepare a reading session, or generate a token stream for a speed-reading UI.
npx skill4agent add richfrem/agent-plugins-skills rsvp-readingFull architecture:Acceptance criteria:references/architecture.mdFallback tree:references/acceptance-criteria.mdToken stream schema:references/fallback-tree.mdreferences/token-stream-schema.md
.txt.md.pdf.docx300100-1000./rsvp_output.jsonpython3 plugins/rsvp-speed-reader/skills/rsvp-reading/scripts/parse_document.py \
--input <file_path> \
--output /tmp/rsvp_words.jsonpython3 plugins/rsvp-speed-reader/skills/rsvp-reading/scripts/orp_engine.py \
--input /tmp/rsvp_words.json \
--wpm <wpm> \
--output <output_path>references/token-stream-schema.md{"w": "Hello", "orp": 1, "delay_ms": 200, "is_sentence_end": false, "is_para_end": false}This document contains ~{word_count} words.
At {wpm} WPM this will take ~{minutes} minutes to read.
Generating token stream (~{token_count} tokens) to {output_path}.
Proceed? [yes/no]rsvp-comprehension-agent