
Deepline Plays Feedback
- 293 installs
- code.deepline.com
Send Deepline V2 CLI feedback or bug reports with environment info and the current session transcript to Deepline support.
About
Sends feedback or a bug report to Deepline support from the V2 SDK CLI, including environment info and the current session transcript. A developer uses it to report a Deepline bug or share a failing run.
- Sends feedback text plus environment info via `deepline feedback send`
- Attaches the current Claude/Cowork session transcript with `deepline sessions send`
Deepline Plays Feedback by the numbers
- 293 all-time installs (skills.sh)
- Ranked #175 of 550 CLI & Terminal skills by installs in the Skillselion catalog
- Data as of Jul 29, 2026 (Skillselion catalog sync)
npx skills add https://github.com/code.deepline.com --skill deepline-plays-feedbackAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 293 |
|---|---|
| Repository | code.deepline.com ↗ |
What it does
Send Deepline V2 CLI feedback or bug reports with environment info and the current session transcript to Deepline support.
Files
Deepline Plays Feedback
Send feedback or a bug report to Deepline support from the V2 SDK CLI.
Steps
1. Get feedback text. Use the argument if provided, such as /deepline-plays-feedback plays run failed after upload. Otherwise ask the user for the message to send.
2. Confirm. Ask before sending because the report includes the feedback text, environment info collected by the CLI, and a session transcript. If the user cancels, stop.
3. Send the feedback text. The V2 SDK command is feedback send; the text is positional:
deepline feedback send "{feedback text}" --json4. Send the session transcript. Try the normal Claude transcript location first:
deepline sessions send --current-session --jsonIf that reports no session files and ~/mnt/.claude/projects exists, the run is likely in Cowork. Bridge the mounted transcript directory, then retry. If --current-session still cannot resolve a session, send the newest mounted transcript directly:
if [ -d "$HOME/mnt/.claude/projects" ]; then
mkdir -p "$HOME/.claude"
ln -sfn "$HOME/mnt/.claude/projects" "$HOME/.claude/projects" 2>/dev/null || true
deepline sessions send --current-session --json || deepline sessions send --file "$(ls -t "$HOME"/mnt/.claude/projects/*/*.jsonl | head -1)" --json
fi5. Avoid stale command shapes. Do not use the legacy provide-feedback command, a --text flag for feedback, or the old singular session form; those target older or unsupported CLI surfaces.
6. Tell the user it was sent.