Agent Skills
› n0an/VivaDicta
› start-logs
start-logs
GitHub在 iOS 模拟器中启动 VivaDicta 应用的实时日志捕获会话,将结构化日志输出至指定目录并维持长期运行。
Trigger Scenarios
需要捕获 iOS 模拟器中的应用日志
调试时获取应用实时运行日志
Install
npx skills add n0an/VivaDicta --skill start-logs -g -y
SKILL.md
Frontmatter
{
"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 streamcontinues 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-logsskill 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
Loggeroutput, not rawprint()statements. - If no Simulator is booted,
./scripts/launch_simulator.shexits with an error.
Related
Version History
- c5601d4 Current 2026-07-25 08:16


