← ClaudeAtlas

feedbackslisted

Screen+voice capture for visual feedback. Setup whisper.cpp, launch the capture app, or analyze a session. When ticket-takeaway is installed, adds SDLC context (ticket-linked output, context push after analysis).
ytubecoder/ticket-takeaway · ★ 1 · Code & Development · score 60
Install: claude install-skill ytubecoder/ticket-takeaway
# Feedbacks — Capture + Ticket-Takeaway Integration This skill handles everything: first-time setup, launching the capture app, and analyzing sessions. It works from **any project directory** — the feedbacks tool lives at `/home/user/projects/feedbacks`. When ticket-takeaway is installed, this skill adds: - Ticket-linked output directories (`/feedbacks start {ticket-id}`) - Context push after analysis (session path + summary available to the agent) **FEEDBACKS_HOME:** `/home/user/projects/feedbacks` ## Determine what to do Check `$ARGUMENTS.command`: - If `setup` → go to **Setup** - If `start` (with or without ticket-id) → go to **Start** - If `analyze` or a file/directory path → go to **Analyze** - If omitted → **Auto-detect**: ### Auto-detect logic 1. Check if FEEDBACKS_HOME exists: `ls /home/user/projects/feedbacks/start.sh` - If not → tell the user: "Feedbacks is not installed. Install from https://github.com/ytubecoder/feedbacks for screen+voice capture." 2. Check if `whisper.cpp/build/bin/whisper-server` exists in FEEDBACKS_HOME - If not → tell the user: "First time? Running setup." → go to **Setup** 3. Check if whisper-server is already running: `curl -sf http://localhost:8081/health` - If not running → go to **Start** - If running → go to **Analyze** (app is already up, user probably has a session to review) --- ## Setup Install whisper.cpp and download a model. Run these commands: ```bash cd /home/user/projects/feedbacks # Clone and build whi