Stats
Actions
Tags
From weft
Launch the weft TUI dashboard in a new terminal window. Use only when user types /wf-dashboard.
How this skill is triggered — by the user, by Claude, or both
Slash command
/weft:wf-dashboardThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Launch the interactive TUI dashboard in a new terminal tab.
Launch the interactive TUI dashboard in a new terminal tab.
Run this command to open the dashboard in a new iTerm/Terminal tab:
PLUGIN_ROOT="${CLAUDE_PLUGIN_ROOT:-$HOME/.claude/plugins/marketplaces/local/plugins/weft}"
PROJECT_DIR="${CLAUDE_PROJECT_DIR:-.}"
osascript -e "
tell application \"System Events\"
set frontApp to name of first application process whose frontmost is true
end tell
if frontApp is \"iTerm2\" then
tell application \"iTerm\"
tell current window
create tab with default profile
tell current session
write text \"PYTHONPATH='$PLUGIN_ROOT' CLAUDE_PROJECT_DIR='$PROJECT_DIR' python3 '$PLUGIN_ROOT/core/dashboard.py'; exit\"
end tell
end tell
end tell
else
tell application \"Terminal\"
do script \"PYTHONPATH='$PLUGIN_ROOT' CLAUDE_PROJECT_DIR='$PROJECT_DIR' python3 '$PLUGIN_ROOT/core/dashboard.py'; exit\"
activate
end tell
end if
"
Tell the user: "Dashboard opened in a new tab. Press r to refresh, q to quit."
Guides creation, editing, and verification of skills for AI coding agents using test-driven development with subagent scenarios. Use when authoring or debugging skills.
npx claudepluginhub dioptx/weft --plugin weft