focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
/cs:inbox-setup — Interactive 8-section interview that builds a personalized 7-file email-triage knowledge base. ~25-31 grill-me questions, one at a time. Run ONCE; re-run when business/pricing/priorities change. Companion to /cs:inbox-triage.
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cs-inbox-setupContext preview
What this command does when you run it.
/cs:inbox-setup — Interactive 8-section interview that builds a personalized 7-file email-triage knowledge base. ~25-31 grill-me questions, one at a time. Run ONCE; re-run when business/pricing/priorities change. Companion to /cs:inbox-triage.
name: "cs-inbox-setup" description: "/cs:inbox-setup — Interactive 8-section interview that builds a personalized 7-file email-triage knowledge base. ~25-31 grill-me questions, one at a time. Run ONCE; re-run when business/pricing/priorities change. Companion to /cs:inbox-triage."
**Command:** `/cs:inbox-setup`
The `cs-inbox-setup` persona walks an 8-section interview to build your personalized email triage knowledge base in `${WORKSPACE}/Email/`.
Do NOT run if your existing KB still represents reality. Re-running is expensive (~20 min interview). If only one preference needs updating, edit the KB file directly.
This is one half of a pair:
Both share a strict 7-file contract. See [`kb_file_contract.md`](../skills/inbox-setup/references/kb_file_contract.md) for the spec.
After ~25-31 questions across 8 sections (about 15-20 min), the skill produces these files in `${WORKSPACE}/Email/`:
| File | Always created? | Content | |---|---|---| | `email-taxonomy.md` | ✓ | Categories + signals + default actions + report preferences | | `email-patterns.md` | ✓ | Voice register + sign-offs + persona + hard rules + templates | | `evaluation-framework.md` | Only if user has opportunities | Decision tree + TAKE-IT signals + PASS signals + VIP list | | `rate-card.md` | Only if user has pricing | Standard pricing + terms + negotiation posture | | `blocklist.md` | ✓ (seeded) | Auto-skip senders + decline patterns; grows over triage runs | | `tracker.md` | ✓ (seeded) | Active follow-ups + overdue + deadlines | | `triage-log/` | ✓ (empty dir) | Per-run triage logs (populated by inbox-triage) |
1. **The Big Picture** — role, dominant inbox categories, volume split, addresses, run cadence, delegation (6 Q) 2. **Email Categories** — propose taxonomy from S1, confirm, refine (3 Q) → writes `email-taxonomy.md` 3. **Reply Style & Voice** — register, pet peeves, sign-offs, persona, length, hard rules + **paste 3-5 real sent emails** (7 Q + samples) → writes `email-patterns.md` 4. **Evaluation Framework** (conditional) — gut filter, deal-breakers, attractors, pricing, negotiation, VIP list (6 Q) → writes `evaluation-framework.md` + `rate-card.md` 5. **Blocklist & Patterns** — skip-senders, decline-patterns, time-wasters (3 Q) → writes `blocklist.md` 6. **Current State** — active threads, overdue replies, deadlines (3 Q) → writes `tracker.md` + creates `triage-log/` 7. **Report Preferences** — delivery format, detail level, top-of-report priorities (3 Q) → appends to `email-taxonomy.md` 8. **Confirmation & Handoff** — file inventory + handoff message → directs you to `/cs:inbox-triage`
**Stop condition:** ~25-31 questions total (S4 skip drops ~6). Hard ceiling 35. Never re-open after S8 — re-run the skill to change preferences.
# 1. Detect workspace + check for existing KB
ls ${WORKSPACE}/Email/
# 2. If exists → re-run mode (per-file replace/merge/skip).
# If fresh → start session:
python ../skills/inbox-setup/scripts/section_progress_tracker.py \
--action start --session "inbox-setup-$(date +%Y%m%d)" --user "<who>"
# 3. Walk S1 → S2 → ... → S8 (one Q per turn).
# 4. At S3.SAMPLES, analyze pasted emails:
python ../skills/inbox-setup/scripts/voice_sample_analyzer.py --samples-file /tmp/samples.txt
# 5. At end of each section, write its file(s) + record:
python ../skills/inbox-setup/scripts/section_progress_tracker.py \
--action record_section_done --session NAME --section N --files "..."
# 6. At S8, validate final state + close session:
python ../skills/inbox-setup/scripts/kb_validator.py --workspace ${WORKSPACE}
python ../skills/inbox-setup/scripts/section_progress_tracker.py --action close --session NAME388 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…