focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
/cs:meeting-actions — Turn raw meeting notes into an owned action-item checklist: extracts checkboxes, ACTION:/TODO: lines, '@name will …' and 'Name will … by date' patterns, groups by owner, and flags every ORPHAN (no owner) and NO-DUE item. An action without an owner and a
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cs-meeting-actionsContext preview
What this command does when you run it.
/cs:meeting-actions — Turn raw meeting notes into an owned action-item checklist: extracts checkboxes, ACTION:/TODO: lines, '@name will …' and 'Name will … by date' patterns, groups by owner, and flags every ORPHAN (no owner) and NO-DUE item. An action without an owner and a
name: "cs-meeting-actions" description: "/cs:meeting-actions — Turn raw meeting notes into an owned action-item checklist: extracts checkboxes, ACTION:/TODO: lines, '@name will …' and 'Name will … by date' patterns, groups by owner, and flags every ORPHAN (no owner) and NO-DUE item. An action without an owner and a date is not an action." argument-hint: "[path to notes file, or paste the notes]"
**Command:** `/cs:meeting-actions [notes file or pasted notes]`
A meeting that ends without owned, dated actions was theater. This command runs immediately after the meeting — while attendees still remember what they agreed to — and turns the messy notes into a checklist where every item has a name and a date, or is loudly flagged until it does.
1. **A markdown checklist grouped by owner** — each item with its due date where one was captured. 2. **ORPHAN flags** — every action with no owner, grouped under "(unassigned)" so they get claimed before the thread goes cold. 3. **NO-DUE flags** — owned actions with no date, listed so a date gets attached now, not "later". 4. **Summary counts** — total actions · owned · orphaned · missing dates, in one line.
not noise; never silently drop or auto-assign an orphan.
the notes don't contain.
# From a notes file python ../skills/meetings/scripts/action_item_extractor.py --input notes.md # From pasted notes on stdin cat notes.md | python ../skills/meetings/scripts/action_item_extractor.py # Machine-readable, for piping into other checklists python ../skills/meetings/scripts/action_item_extractor.py --input notes.md --json
Then walk the flags: assign every ORPHAN, date every NO-DUE, and post the checklist.
(that's a `/cs:meeting-prep` conversation for next time). Don't fabricate items.
---
**Version:** 1.0.0
388 production-ready Claude Code skills, plugins, and agent skills for 13 AI coding tools. The most comprehensive open-source library of Claude Code skills and agent plugins — also works with OpenAI Codex, Gemini CLI, Cursor, and 9 more coding agents.
Repo: alirezarezvani/claude-skills
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
Clean up merged branches locally and on remote, keeping only main, dev, and gh-pages.
Stage, commit, and push the current branch following git governance rules.
Comprehensive audit pipeline for skills, plugins, agents, and commands. Validates structure, quality, security, marketplace compliance, cross-platform…