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-prep — Gate a meeting before it exists: price it in real dollars (attendees x minutes x rate + optional 23-minute refocus overhead), demand a decision + agenda + owner, then either recommend async or build a timeboxed, decision-first agenda where every topic has 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-prepContext preview
What this command does when you run it.
/cs:meeting-prep — Gate a meeting before it exists: price it in real dollars (attendees x minutes x rate + optional 23-minute refocus overhead), demand a decision + agenda + owner, then either recommend async or build a timeboxed, decision-first agenda where every topic has a
name: "cs-meeting-prep" description: "/cs:meeting-prep — Gate a meeting before it exists: price it in real dollars (attendees x minutes x rate + optional 23-minute refocus overhead), demand a decision + agenda + owner, then either recommend async or build a timeboxed, decision-first agenda where every topic has a desired outcome." argument-hint: "[the meeting: who, how long, what decision]"
**Command:** `/cs:meeting-prep [the meeting]`
Most meetings should be an email. This command makes that a testable claim: it prices the meeting, runs the decision/agenda/owner gate, and only if the meeting survives does it build the timeboxed agenda. An ASYNC verdict is a win — draft the memo instead.
1. **The price** — direct cost (attendees × minutes × rate) plus, with `--include-refocus`, the 23-minute-per-attendee refocus overhead, and a cost-per-minute line. 2. **One gate verdict** — `ASYNC` (no decision → send a memo; exit 2), `NOT-READY` (decision but missing agenda/owner, named; exit 3), or `MEET` (exit 0). 3. **On MEET: a timeboxed agenda** — decision topics first, per-topic desired outcome + owner + timebox, a pre-read line, and a mandatory 5-minute closing "actions recap" slot. 4. **On ASYNC: a memo outline** — the decision-free content restructured as a written update.
# 1. Price + gate the meeting python ../skills/meetings/scripts/meeting_cost_calculator.py \ --attendees 6 --minutes 60 --avg-rate 90 --include-refocus \ --has-decision --has-agenda --has-owner # 2a. ASYNC (exit 2) → draft the memo outline instead. Stop here. # 2b. NOT-READY (exit 3) → get the missing agenda/owner, re-run the gate. # 3. MEET (exit 0) → build the timeboxed, decision-first agenda python ../skills/meetings/scripts/agenda_builder.py --length 45 \ --topic "Q3 pricing:Decide usage-based vs seat-based:15:maria" \ --topic "Launch risks:Discuss open launch blockers:15:sam" \ --topic "Metrics:Inform team of activation trend:5:alex"
---
**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…