aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Reorganize GitHub issue labels into type, priority, and effort groups.
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/update-labelsContext preview
What this command does when you run it.
Reorganize GitHub issue labels into type, priority, and effort groups.
name: update-labels description: Reorganize GitHub issue labels into type, priority, and effort groups. usage: /update-labels [--repo <owner/repo>] [--dry-run] [--preserve <label>...]
Reorganizes GitHub issue labels into a professional taxonomy. Creates distinct labels for issue types (feature, bugfix, test, docs, etc.), priorities, and effort estimates, then re-labels all issues accordingly.
**Custom Labels**: The taxonomy below serves as a foundation. **You should create custom labels** for project-specific needs:
**When to Add Custom Labels:**
**Good Custom Label Examples:**
# Component-based gh label create "frontend" --color "#C5DEF5" --description "Frontend/UI changes" gh label create "api" --color "#006B75" --description "API and backend services" # Project-specific gh label create "sanctum" --color "#9B59B6" --description "Sanctum plugin work" gh label create "hooks" --color "#E67E22" --description "Hook development" # Workflow-specific gh label create "blocked" --color "#B60205" --description "Blocked by external dependency" gh label create "ready-for-review" --color "#0E8A16" --description "Ready for code review"
Custom labels should complement (not replace) the standard taxonomy. Keep them focused on project-specific classification that adds value beyond type/priority/effort.
| Label | Color | Description | |-------|-------|-------------| | `feature` | `#1D76DB` | New functionality | | `bugfix` | `#D73A4A` | Bug fixes | | `test` | `#0E8A16` | Testing improvements | | `docs` | `#0075CA` | Documentation improvements | | `refactor` | `#FBCA04` | Code restructuring without behavior change | | `performance` | `#5319E7` | Optimization and efficiency | | `ci-cd` | `#006B75` | CI/CD and automation | | `research` | `#C5DEF5` | Investigation and exploration |
| Label | Color | Description | |-------|-------|-------------| | `high-priority` | `#B60205` | Urgent or blocking | | `medium-priority` | `#FBCA04` | Normal priority | | `low-priority` | `#0E8A16` | Nice-to-have |
| Label | Color | Description | |-------|-------|-------------| | `small-effort` | `#C2E0C6` | < 2 hours | | `medium-effort` | `#FEF2C0` | 2-8 hours | | `large-effort` | `#F9D0C4` | > 1 day |
# List existing labels gh label list --json name,description,color # List all open issues with labels gh issue list --state open --json number,title,labels
Identify:
For each label in the taxonomy:
# Create if doesn't exist gh label create "<name>" --description "<desc>" --color "<color>" # Or update if exists with wrong attributes gh label edit "<old-name>" --name "<new-name>" --description "<desc>" --color "<color>"
For each open issue, analyze and determine appropriate labels:
**Type Classification Rules:**
| Issue Pattern | Type Label | |---------------|------------| | Title contains: `feat`, `add`, `implement`, `create` | `feature` | | Title contains: `fix`, `bug`, `broken`, `error` | `bugfix` | | Title contains: `test`, `coverage`, `spec` | `test` | | Title contains: `doc`, `readme`, `guide` | `docs` | | Title contains: `refactor`, `cleanup`, `rename` | `refactor` | | Title contains: `perf`, `optim`, `speed`, `slow` | `performance` | | Title contains: `ci`, `cd`, `pipeline`, `deploy` | `ci-cd` | | Title contains: `research`, `investigate`, `explore`, `discuss` | `research` |
**Effort Classification Rules:**
| Indicator | Effort Label | |-----------|--------------| | Has `good first issue` label | `small-effort` | | Body mentions "quick", "simple", "trivial" | `small-effort` | | Body mentions "complex", "significant", "major" | `large-effort` | | Default for features | `medium-effort` |
# For each issue gh issue edit <number> \ --add-label "<type-label>" \ --add-label "<effort-label>" \ --remove-label "enhancement" # Remove catch-all
# Delete labels that are now redundant gh label delete "enhancement" --yes gh label delete "suggestion" --yes
Display summary:
## Label Taxonomy Update Complete ### Labels Created | Label | Description | |-------|-------------| | feature | New functionality | | ... | ... | ### Labels Renamed | Old | New | |-----|-----| | documentation | docs | | bug | bugfix | ### Labels Deleted - enhancement (replaced by specific types) - suggestion (redundant) ### Issues Updated | Type | Count | |------|-------| | feature | 26 | | test | 15 | | docs | 8 | | ... | ... | **Total**: 60 issues updated
/update-labels Analyzing labels in athola/claude-night-market... Current Stat
A plugin marketplace for Claude Code. Install only the plugins you need to run git workflows, code review, spec-driven development, and autonomous agents from inside your Claude Code session.
Generate LEARNINGS.md from skill execution logs over a configurable time window.
Analyze skill file complexity metrics and generate modularization recommendations for splitting or progressive loading.
Scaffold new Claude Code skills with brainstorming, TDD methodology, and proper frontmatter and module structure.