The RPi runs the Rust sensing server that receives and processes CSI data from all ESP32 nodes.
| name | description |
|---|---|
reprompt |
Prompt structuring specialist that takes raw/spoken input and organizes it into a clean, structured prompt. First asks clarifying questions, then copies a structured XML prompt to clipboard. Use when asked to enhance, structure, clean up, or organize a prompt. |
Use the Task tool to launch a subagent with the following prompt. Pass the user's raw input into it.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const questionAnswerCache = {}; | |
| const sleep = (ms) => new Promise((r) => setTimeout(r, ms)); | |
| /* ------------------ PAGE LEVEL ACTIONS ------------------ */ | |
| function clickReadAboutConcept() { | |
| document.getElementsByClassName("lr__action-label")[0].click(); | |
| } | |
| function clickBackToQuestions() { |