# Julia Log

> Control the log viewer for real-time Julia output

- Skill: `samtalki/julia-log` (Agent Skill)
- Install (CLI): `npx skillmds@latest add samtalki/julia-log`
- Raw SKILL.md: https://api.skillmd.com/api/skills/samtalki/julia-log/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: samtalki (https://skillmd.com/u/samtalki)
- Updated: 2026-09-10
- Page: https://skillmd.com/skills/samtalki/julia-log

---


# Julia Log Viewer

Control the log viewer that displays Julia output in a separate terminal window.

## Arguments

- `mode` - One of: `auto`, `tmux`, `file`, `off`

## Modes

| Mode | Description |
|------|-------------|
| `auto` | Automatically choose the best viewer (tmux if available, otherwise file) |
| `tmux` | Open a tmux pane showing live output |
| `file` | Write output to `~/.julia/logs/repl.log` (view with `tail -f`) |
| `off` | Disable the log viewer |

## Instructions

1. Parse the user's argument to determine the mode
2. Call `log_viewer` with the specified mode
3. Report the result to the user

## Notes

- The log viewer shows `stdout` and `stderr` from eval calls in real-time
- Useful for long-running computations where you want to see progress
- `auto` is the recommended mode for most users

