
Log Viewer
- 2 installs
- 14 repo stars
- Updated January 27, 2026
- ceeon/skilllauncher
Views and searches the SkillLauncher app log to trace executed commands and find errors.
About
Reads and greps the SkillLauncher log file at ~/Library/Logs/SkillLauncher/app.log to inspect executed commands, skill counts, and errors. A developer uses it to debug why a command did not run or skills did not appear.
- Reads ~/Library/Logs/SkillLauncher/app.log with tail/grep
- Troubleshooting table maps symptoms to log checks
Log Viewer by the numbers
- 2 all-time installs (skills.sh)
- Ranked #464 of 596 Debugging skills by installs in the Skillselion catalog
- Data as of Jul 28, 2026 (Skillselion catalog sync)
npx skills add https://github.com/ceeon/skilllauncher --skill log-viewerAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 2 |
|---|---|
| repo stars | ★ 14 |
| Last updated | January 27, 2026 |
| Repository | ceeon/skilllauncher ↗ |
What it does
Views and searches the SkillLauncher app log to trace executed commands and find errors.
Files
Log Viewer
查看 SkillLauncher 日志,快速定位问题。
日志位置
~/Library/Logs/SkillLauncher/app.log日志格式
[ISO8601时间戳] 消息示例:
[2026-01-27T08:17:44Z] 发送: /todo-hub Anthropic mcpUI方案日志类型
| 日志内容 | 含义 |
|---|---|
========== SkillLauncher 启动 ========== | 应用启动 |
加载了 N 个 skills | 扫描到的 skills 数量 |
发送: /skill-name 参数 | 用户执行的命令 |
常用查询
# 最近 50 条
tail -50 ~/Library/Logs/SkillLauncher/app.log
# 搜索特定命令
grep "发送:" ~/Library/Logs/SkillLauncher/app.log | tail -20
# 搜索错误
grep -i "error\|fail\|❌" ~/Library/Logs/SkillLauncher/app.log
# 今天的日志
grep "$(date -u +%Y-%m-%d)" ~/Library/Logs/SkillLauncher/app.log
# 实时监控
tail -f ~/Library/Logs/SkillLauncher/app.log排查指南
| 问题 | 检查方法 |
|---|---|
| 命令没执行 | 看是否有 发送: 日志 |
| Skills 没显示 | 检查 加载了 N 个 skills 数量 |
| 流式不工作 | 确认 Claude CLI 支持 --output-format stream-json |
Related skills
Debuggingmonitoring