aggregate-logs
Generate LEARNINGS.md from skill execution logs over a configurable time window.
**Navigation**: [<- Reconciliation](reconciliation.md) | [Step 6 Hub](../6-complete.md) | [Next: Thread Resolution ->](thread-resolution.md)
> /plugin marketplace add athola/claude-night-marketHow it fires
How this command gets triggered: by you, by Claude, or both.
/issue-creationContext preview
What this command does when you run it.
**Navigation**: [<- Reconciliation](reconciliation.md) | [Step 6 Hub](../6-complete.md) | [Next: Thread Resolution ->](thread-resolution.md)
> **Navigation**: [<- Reconciliation](reconciliation.md) | [Step 6 Hub](../6-complete.md) | [Next: Thread Resolution ->](thread-resolution.md)
**Purpose**: Create GitHub issues for all suggestion and deferred items identified during triage and reconciliation.
---
**CRITICAL: GitHub issues are created AUTOMATICALLY for ALL suggestion and deferred items identified in Step 6.0.**
> **Module Reference**: Auto-issue creation is handled inline by the workflow monitor.
**This step is automatic** - no flag required. When items are classified as "Suggestion" or "Deferred" during triage (Step 2) OR identified during reconciliation (Step 6.0), issues are created.
**To skip automatic creation**: Use `--no-auto-issues` flag.
**Duplicate Detection**: Before creating, search for existing issues with similar titles to avoid duplicates.
For each comment classified as **Suggestion** during triage or reconciliation, create a GitHub issue:
gh issue create \
--title "[Suggestion] <description from review comment>" \
--body "$(cat <<'EOF'
## Background
Identified during PR #PR_NUMBER review as a suggestion for improvement.
**Original Review Comment:**
> [Quote the review comment here]
**Location:** `file/path.py:line` (if applicable)
## Suggested Improvement
[Describe the suggested improvement based on the review feedback]
## Value
[Explain why this improvement would be valuable - performance, UX, maintainability, etc.]
## Acceptance Criteria
- [ ] [Specific criteria based on the suggestion]
- [ ] Tests added/updated (if applicable)
- [ ] Documentation updated (if applicable)
## References
- PR #PR_NUMBER: [PR URL]
- Original review comment: [Link if available]
---
*Created from PR #PR_NUMBER review triage*
EOF
)" \
--label "suggestion" \
--label "enhancement"**Suggestion Issue Rules:**
**Track Created Suggestion Issues:** After creating issues, document them in the PR comment:
### Suggestions -> GitHub Issues | Review Item | Issue Created | Description | |-------------|---------------|-------------| | S1 | #43 | Clarify ruff-format comment | | S2 | #44 | Improve test output verbosity |
---
For each comment classified as **Deferred** (including "out-of-scope", "medium priority", "future work") during triage, create a GitHub issue:
gh issue create \
--title "<type>(<scope>): <description from review comment>" \
--body "$(cat <<'EOF'
## Background
Identified during PR #PR_NUMBER review as out-of-scope.
**Original Review Comment:**
> [Quote the review comment here]
**Location:** `file/path.py:line` (if applicable)
## Scope
[Describe what needs to be done based on the review feedback]
## Suggested Implementation
[Any suggestions from the review or analysis]
## Acceptance Criteria
- [ ] [Specific criteria based on the feedback]
- [ ] Tests added/updated
- [ ] Documentation updated (if applicable)
## References
- PR #PR_NUMBER: [PR URL]
- Original review comment: [Link if available]
---
*Created from PR #PR_NUMBER review triage*
EOF
)" \
--label "enhancement"**Issue Creation Rules:**
---
> **Next**: [Thread Resolution](thread-resolution.md)
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.