| name | start-logs |
| description | Start a real-time log capture session for VivaDicta in the iOS Simulator |
| disable-model-invocation | true |
start-logs
Task
Start a simulator log capture session for VivaDicta and keep it running in a long-lived shell session.
Instructions
- Ensure the logs directory exists:
mkdir -p logs
- Run the helper script in a long-lived shell session:
./scripts/launch_simulator.sh
- Keep that session alive so
log stream continues running until it is stopped.
- Tell the user log capture is active and that they can now interact with the app.
- Tell the user to use the
stop-logs skill when they want the newest log file summarized or filtered.
Notes
- The app is not relaunched. This attaches to the currently booted Simulator.
- The script writes to
logs/sim-YYYYMMDD-HHMMSS.log.
- This captures structured
Logger output, not raw print() statements.
- If no Simulator is booted,
./scripts/launch_simulator.sh exits with an error.
Related