WakeWait v1.0.10 - skill-only native sleep
WakeWait v1.0.10 resets the project to the simplest useful core: a skill-only native shell sleep workflow.
Changes:
- Removes the WakeWait CLI runtime.
- Removes persisted state, background workers, wait-for rules, Pi runtime patching, status/cancel commands, and Node-based install helpers.
- Keeps only the
wakewaitCodex skill plus small PowerShell/POSIX install and uninstall scripts. - The skill now teaches Codex to use direct shell sleep:
- PowerShell:
Start-Sleep -Seconds 600; Get-Date -Format 'yyyy-MM-dd HH:mm:ss zzz' - POSIX:
sleep 600; date '+%Y-%m-%d %H:%M:%S %z'
- PowerShell:
- Installers copy the skill into global Codex skill roots and clean old WakeWait CLI launchers if present.
Validated with plugin validation, skill validation, npm check, PowerShell install/uninstall smoke test, POSIX shell install/uninstall smoke test, and local global skill installation.