# Progress Update

> Automatically update the Ghostty progress log when tasks change status Use when this capability is needed.

- Skill: `tomevault-io/progress-update` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add tomevault-io/progress-update`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tomevault-io/progress-update/raw
- Safety review: pending (external: skill-scanner PASS, skillspector CAUTION)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: tomevault-io (https://skillmd.com/u/tomevault-io)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tomevault-io/progress-update

---


# Progress Update Skill

When working inside a Ghostty Dev terminal session, report task status changes to the progress log so the Swift UI can display them in real time.

## How to Report Progress

```bash
python3 ~/.claude/scripts/ghostty_progress.py append "<emoji> <message>"
```

Session name is derived automatically from `$GHOSTTY_TAB_ID` — no manual configuration needed.

## When to Report

- **Starting a task or major step:** append with 🔄 emoji
- **Completing a task or major step:** append with ✅ emoji

## Format

Each entry is automatically timestamped by the CLI. Just provide the emoji and a concise description:

```bash
# Starting work
python3 ~/.claude/scripts/ghostty_progress.py append "🔄 Implementing user authentication"

# Completed work
python3 ~/.claude/scripts/ghostty_progress.py append "✅ User authentication complete"
```

## Guard

Only call the script when `$GHOSTTY_TAB_ID` is set (i.e., running inside a Ghostty Dev terminal). Skip silently if the variable is empty.

---
> Source: [BUNotesAI/ghostty-dev](https://github.com/BUNotesAI/ghostty-dev) — distributed by [TomeVault](https://tomevault.io).
<!-- tomevault:4.0:skill_md:2026-06-19 -->

