dev-dashboard-tui

Solid

Hand the user the command to launch the dev-dashboard TUI — a terminal-native, cross-project .dev/ feature portfolio (status, progress, detail panes) for SSH/tmux/no-browser workflows. Use when the user wants to open, start, or launch the terminal dashboard / dev-dashboard TUI. The agent cannot run it — a TUI needs an interactive terminal — so this skill prints the exact command to paste.

Web & Frontend 2 stars 0 forks Updated today MIT

Install

View on GitHub

Quality Score: 78/100

Stars 20%
16
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
80
License 10%
100
Description 5%
100

Skill Content

## Launch the Dev Dashboard TUI The dev-dashboard TUI is the terminal-native sibling of the web `/dev-dashboard`: the same cross-project `.dev/` feature portfolio — a recency-sorted project rail, per-feature status and progress, and a detail pane — rendered natively in the terminal for SSH/tmux/no-browser workflows. It live-refreshes as `.dev/` PRDs change. ### Why the agent cannot start it A TUI is a **foreground, interactive** process that must own a real terminal (TTY). Claude Code's `Bash` tool runs commands against a detached, non-interactive pipe — an Ink app rendered there produces garbage and never receives keystrokes. Unlike `/dev-dashboard` (which backgrounds an HTTP server and reports a URL), this skill **hands the launch command to the user** to run in their own terminal. **Do not attempt to spawn the TUI from a `Bash` tool call.** ### Step 1: Resolve the launch command The launcher lives at `scripts/launch.sh` within this skill's directory. Build the absolute path to it (call it `$LAUNCH`). Optionally confirm the bundled artifact is present first: ```bash test -f "$LAUNCH" && echo ok ``` Where `$LAUNCH` is the absolute path to `scripts/launch.sh` within this skill's directory. Use `$HOME` instead of literal home paths. ### Step 2: Tell the user to run it Present the exact command for the user to paste into their **own** terminal (with `$LAUNCH` resolved to the real absolute path): ``` bash "<absolute path>/scripts/launch.sh" ``` To scan a specific dir...

Details

Author
andreaserradev-gbj
Repository
andreaserradev-gbj/dev-workflow
Created
6 months ago
Last Updated
today
Language
JavaScript
License
MIT

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Listed

dev-dashboard

Start the dev-dashboard web server and display the URL. Detects if the server is already running, finds an available port if needed. Use when the user wants to open, start, or launch the dev-dashboard.

2 Updated today
andreaserradev-gbj
Code & Development Solid

debug-ui

Drive and visually QA the dev-3.0 UI in a real browser (headless Chromium via agent-browser). Use when verifying a UI/UX change, reproducing a visual bug, taking screenshots of the running app, or self-QA before review. Triggers — "check the UI", "screenshot the app", "does this render", "QA this screen", "verify the UI change in a browser", "drive the app".

229 Updated yesterday
h0x91b
Web & Frontend Listed

tui-design

Design and build clean, professional, minimal terminal UI (TUI) applications and command-line tools. Use this skill whenever the user is building, designing, refactoring, reviewing, or asking about terminal interfaces — full-screen TUIs (file managers, dashboards, monitors, git/k8s tools, REPLs), interactive CLI prompts, or simple command-line utilities. Use it for library questions ("Bubble Tea vs Ratatui vs Textual vs Ink"), design questions ("how should I lay out this dashboard"), and concrete build requests ("build me a TUI for X"), even when the user doesn't say "TUI" explicitly — phrases like "terminal app", "ncurses-style", "interactive shell tool", "CLI dashboard", "fzf-like picker", or naming a known TUI app (lazygit, k9s, btop, helix, yazi) all qualify.

1 Updated 2 days ago
gfargo