A collection of Claude Code plugins for library maintainers and developers.
# Add the marketplace
/plugin marketplace add iyulab/claude-plugins
# Install the iyu plugin
/plugin install iyu@iyulab-pluginsProductivity toolkit for open-source library maintainers — adaptive iterative development, issue triage, PR review
| Component | Type | Activation | Description |
|---|---|---|---|
mindset |
Skill | Auto (background) | "Critical but Constructive" mindset for conversational triage/dev discussions |
issue-triage |
Skill | Auto (conversational) | Decision matrices and triage advice |
/iyu:issue |
Skill | Manual | Full issue triage report |
/iyu:pr |
Skill | Manual | PR review with security focus |
/iyu:run |
Skill | Manual | Plan-driven development execution |
/iyu:run-cycle |
Skill | Manual | Adaptive iterative cycles (re-plan → execute → verify → reflect) |
/iyu:telemetry-az |
Skill | Manual | Azure App Insights telemetry triage — defects, regressions, feature drop |
/plugin install iyu@iyulab-pluginsThe plugin automatically activates when you discuss issue evaluation or PR review. Just ask naturally:
- "Should I accept this feature request?"
- "How should I respond to this issue?"
- "Is this in scope for my project?"
- "Help me triage this pull request"
- "Review this PR for me"
- "Find similar bugs in the codebase"
| Command | Description |
|---|---|
/iyu:issue |
Systematic issue evaluation with root cause analysis |
/iyu:pr |
Professional PR review with security awareness |
/iyu:run |
Plan-driven development execution |
/iyu:run-cycle |
Adaptive iterative development cycles |
/iyu:telemetry-az |
Azure App Insights telemetry triage and issue discovery |
# Triage a GitHub issue
/iyu:issue https://github.com/user/repo/issues/123
# Quick decision only
/iyu:issue https://github.com/user/repo/issues/123 --quick
# Triage and save report
/iyu:issue ./docs/feature-request.md --save# Full PR review
/iyu:pr https://github.com/user/repo/pull/123
# Quick review (critical issues only)
/iyu:pr https://github.com/user/repo/pull/123 --quick
# Security-focused review
/iyu:pr https://github.com/user/repo/pull/123 --security-focus# Auto-detect next phase from roadmap
/iyu:run
# Input-driven task execution
/iyu:run "Implement caching layer for API"
# Plan only, no execution
/iyu:run --dry-run# 5 adaptive cycles (default)
/iyu:run-cycle
# 10 cycles with adaptive re-planning
/iyu:run-cycle 10
# Preparation + directional roadmap only
/iyu:run-cycle 5 --dry-runEach cycle runs Re-plan → Design → Execute → Verify → Reflect → Derive-Next. The roadmap is directional — later cycles may reshape it based on what earlier cycles reveal.
# Analyze Azure Application Insights since the last run, triage, and file issues
/iyu:telemetry-az
# Override the window start
/iyu:telemetry-az --since 2026-05-01T00:00:00Z
# Collect + triage + print report only (no files written, watermark not advanced)
/iyu:telemetry-az --dry-run
# Write the report but create no issue files
/iyu:telemetry-az --no-issuesReads per-repo settings from claudedocs/telemetry/config.json (App Insights app id +
thresholds), resumes from a dedicated watermark file, classifies defects / performance
regressions / feature-drop signals, runs issue-triage "1 → 10" discovery aligned with the
project philosophy, and files issues only for threshold-crossing findings. Requires az login.
Issue Triage:
| Philosophy Aligned | Philosophy Misaligned | |
|---|---|---|
| High Feasibility | ✅ ACCEPT | |
| Medium Feasibility | 🔄 ADAPT | ⏳ DEFER / |
| Low Feasibility | ⏳ DEFER | ❌ DECLINE |
PR Review:
| Severity | Meaning |
|---|---|
| 🔴 Blocker | Must fix before merge |
| 🟠 Major | Should fix, or maintainer fixes post-merge |
| 🟡 Minor | Nice to have, non-blocking |
| ✨ Praise | Celebrate good work |
"Every issue is an opportunity" - Our plugins help maintainers move beyond simple accept/reject decisions to find the best path forward for their projects.
# List configured marketplaces
/plugin marketplace list
# Update marketplace metadata
/plugin marketplace update iyulab-plugins
# Remove marketplace
/plugin marketplace remove iyulab-plugins
# List installed plugins
/plugin list- Fork this repository
- Create your plugin in
plugins/your-plugin-name/ - Add plugin.json, commands/, skills/, or agents/ as needed
- Update
.claude-plugin/marketplace.json - Submit a PR
plugins/
└── your-plugin/
├── .claude-plugin/
│ └── plugin.json # Plugin metadata (required)
├── commands/ # Slash commands
│ └── command-name.md
├── skills/ # Auto-activating skills
│ └── skill-name/
│ └── SKILL.md
├── agents/ # Custom agents (optional)
└── README.md # Documentation
- Claude Code CLI installed
- Claude Code version with plugin support
MIT - See LICENSE for details.