code/thread-to-action/SKILL.md
Parses a pasted thread (Slack, email, GitHub, Teams), analyzes it against current git, Linear, and session context, and suggests actionable next steps — then executes them with confirmation. Use when pasting a conversation that implies developer actions.
npx skillsauth add mostafa-drz/claude-skills thread-to-actionInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Analyze a pasted conversation thread and suggest concrete developer actions, then execute them with confirmation.
Read ~/.claude/skills/thread-to-action/preferences.md using the Read tool. If not found, no preferences are set.
On startup, use Bash to detect: current git branch, recent commits (git log --oneline -5), git status, and open PRs (gh pr list --author @me --state open --limit 5). Skip any that fail.
Check $ARGUMENTS:
help → display help then stopconfig → interactive setup then stopreset → delete ~/.claude/skills/thread-to-action/preferences.md, confirm, stopThread → Action — Parse a thread and suggest developer actions
Usage:
/thread-to-action <paste thread> Analyze and suggest actions
/thread-to-action config Configure context sources and action types
/thread-to-action reset Clear preferences
/thread-to-action help This help
Context sources:
Git: branch, recent commits, status, open PRs
Linear: active issues, recent issues assigned to me
Session: working directory, CLAUDE.md, prior conversation
Action types: Git/PR, Linear, Code, Cleanup
See reference/action-types.md for full list
Current preferences:
(shown above under Preferences)
Use AskUserQuestion:
Q1 — "Which context sources should be active?" (multiSelect: true)
Q2 — "Default Linear filters?" (multiSelect: false)
Q3 — "Which action types to suggest?" (multiSelect: true)
Save to ~/.claude/skills/thread-to-action/preferences.md.
If no preferences file exists, show:
"First time using /thread-to-action? Run /thread-to-action config to customize, or continue with defaults (all sources, all action types)."
Then proceed normally.
Analyze $ARGUMENTS and extract:
Fetch in parallel (if Linear is enabled in preferences):
Match thread content against gathered context:
Suggest a numbered list. Each action has:
See reference/action-types.md for common action types. Infer from context — the list is not exhaustive.
Based on the thread, I suggest these actions:
1. [Action] — [Why]
2. [Action] — [Why]
3. [Action] — [Why]
Use AskUserQuestion (multiSelect: true):
For each confirmed action:
Actions completed: X
Actions skipped: Y
Actions failed: Z (with reasons)
Follow-up items: [if any]
If user consistently skips certain action types, note it in preferences. If user corrects a suggestion pattern, save the preference silently.
development
--- name: triage-board description: >- Generates a structured triage artifact from the current conversation's findings — a self-contained Desktop folder with a JSON Schema, schema-conformant report.json, prose markdown, and a single-file HTML viewer. Viewer ships with MD / CSV / JSON download buttons in the header and a per-finding "Copy as Markdown" action that produces a GitHub/Linear/Notion-ready ticket block. Stateless — triage state lives in the user's ticket system, not in the
development
Runs a beginner-mind end-to-end UI audit of any running app — local dev server, staging, production, or a specific URL. Drives Chrome through every interactive element on the target surface, collects structured findings (severity, category, where, symptom, impact, repro, triage), and hands the result off to `/triage-board` which produces the Desktop folder (schema + JSON + Markdown + single-file HTML viewer with MD/CSV/JSON exports and a per-finding Copy as Markdown button). Use when you want fresh-eyes verification of a feature, page, modal, flow, branch, or whole app — before shipping, before review, before a demo, or any time the UI deserves a careful poke.
development
Reviews the user's past Claude Code conversations from a wellbeing perspective — sentiment, tone, emotional arc, recurring patterns — and generates a supportive, science-grounded report in both Markdown and HTML. Default lookback is 48 hours across all projects. Uses recognised emotion frameworks (Plutchik, Ekman, Russell's circumplex, Pennebaker linguistic markers) and cites the science behind every observation. Learns the user's baseline tone over time so future reports flag genuine shifts, not noise. Use when the user asks for an emotional/wellbeing recap, mood check, sentiment review, or wants to understand their own ups and downs across recent work sessions.
development
--- name: workflow-advisor description: >- Analyzes recent Claude Code conversations and local Claude state (skills, settings, memory files, CLAUDE.md), researches the latest Claude Code features and best practices online, and suggests one workflow improvement at a time with reasoning and a concrete action item. Can save accepted suggestions to memory for tracking. Use when you want to discover underused Claude Code features, improve your development workflow, stay current with the lat