focused-fix
Deep-dive feature repair — systematically fix an entire feature/module across all its files and dependencies. Usage: /focused-fix <feature-path>
/cs:syllabus <syllabus-file-or-paste> — Generate curated supplementary reading list from any course syllabus. 3-Q grill-me (input format + audience + year range) + grouping checkpoint → Consensus searches per section with applied-domain weaving → .docx via bundled JS script with
$ npx -y skills add alirezarezvani/claude-skills --agent claude-codeHow it fires
How this command gets triggered: by you, by Claude, or both.
/cs-syllabusContext preview
What this command does when you run it.
/cs:syllabus <syllabus-file-or-paste> — Generate curated supplementary reading list from any course syllabus. 3-Q grill-me (input format + audience + year range) + grouping checkpoint → Consensus searches per section with applied-domain weaving → .docx via bundled JS script with
name: "cs-syllabus" description: "/cs:syllabus <syllabus-file-or-paste> — Generate curated supplementary reading list from any course syllabus. 3-Q grill-me (input format + audience + year range) + grouping checkpoint → Consensus searches per section with applied-domain weaving → .docx via bundled JS script with audience-calibrated summaries + Bloom higher-order discussion questions."
**Command:** `/cs:syllabus <syllabus-file-or-paste>`
The `cs-syllabus` persona produces a `.docx` reading list of recent peer-reviewed research per course section.
| Q | Asks | Notes | |---|---|---| | Q1 | Syllabus input: file path / pasted content / image | refuses missing syllabus | | Q2 | Course audience: undergrad-intro / undergrad-advanced / grad-masters / grad-doctoral / professional / mixed | drives summary jargon + discussion-question complexity | | Q3 | Year range: 1 / 2 / 5 years | drives `year_min` on every Consensus search; default 2 |
reading_list_<course-slug>_<YYYY-MM-DD>.docx
Structure:
- Title page (course name, subtitle, date)
- Introduction (with Consensus app link)
- Course Learning Outcomes (boxed section)
- Sections (6-12, from grouping):
Each section = numbered papers, each with:
- Clickable hyperlinked title
- Author / journal / year (italic)
- Summary (plain language, audience-calibrated)
- Discussion Question (Bloom higher-order, tied to learning outcome)
- Footer (generation metadata)After parsing the syllabus, the skill **halts** with a forcing-options prompt:
Proposed sections: [list with item counts]. Pick one: 1. Looks good — proceed with these sections 2. Merge sections [X] and [Y] 3. Split section [X] into two 4. Add a section for [topic] 5. Remove section [X]
This is the last cheap moment to correct course before search budget is consumed. **Refuses to start Phase 3 without explicit user choice.**
| ✅ Good | ❌ Bad | |---|---| | "This review maps how different diets — Mediterranean, Nordic, vegetarian — reshape the types of fat molecules circulating in your blood, with implications for heart disease risk." | "This paper reviews lipidomic profiles across dietary interventions and their cardiometabolic implications." (Too jargon-heavy) |
| ✅ Good | ❌ Bad | |---|---| | "If dietary fat quality can reshape your lipoprotein lipidome, what does this suggest about the biochemical basis for dietary guidelines recommending unsaturated over saturated fats?" | "What did the authors find?" (Just recall) |
# Phase 0 intake (Q1-Q3) python ../skills/syllabus/scripts/citation_tracker.py --action start --session NAME # Phase 1 parse (PDF/DOCX/text/image-appropriate reader) # Phase 2 group + CHECKPOINT (wait for user) python ../skills/syllabus/scripts/topic_grouper.py --topics-file /tmp/topics.json # Phase 3 search (sequential Consensus 1 q/sec, applied-domain weaving) # Phase 4 write summaries + discussion questions python ../skills/syllabus/scripts/discussion_question_validator.py --questions-file /tmp/qs.json # Phase 5 generate .docx via bundled script node ../skills/syllabus/scripts/generate_reading_list.js \ --input /tmp/data.json \ --output /path/to/reading_list_<course>_<date>.docx # Phase 6 deliver python ../skills/syllabus/scripts/citation_tracker.py --action close --session NAME
---
**Version:** 1.0.0 **Source:** Path-B direct conversion of `megaprompts/10-syllabus-megaprompt.md`
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…