Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Latest commit

 

History

History
105 lines (81 loc) · 5.56 KB

File metadata and controls

105 lines (81 loc) · 5.56 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[1.2.1] - 2026-03-23

Fixed

github-pr-review

  • Added fallback to pulls/$PR/reviews/$REVIEW_ID/comments endpoint when review-attached inline comments are not surfaced by the general pulls/$PR/comments endpoint (cross-checks "Actionable comments posted: N" count)
  • Added missing CodeRabbit type indicators to severity table (_🚨 Critical_, _⚡ Performance_)
  • Documented secondary color badge override rule (e.g., _💡 Suggestion_ | _🟠 Major_ binds to HIGH, not MEDIUM)
  • Added reference to CodeRabbit global "Prompt for all review comments with AI agents" block for cross-comment context
  • Added ?per_page=100 to all fetch API calls to handle PRs with many comments

[1.2.0] - 2026-02-20

Changed

github-pr-review

  • Added CodeRabbit severity detection to references/severity_guide.md: emoji+italic pattern (_⚠️ Potential issue_, _🧹 Nitpick_, _🔧 Optional_, etc.), secondary color badges (_🟡 Minor_, _🟠 Major_) as binding severity indicator
  • Documented CodeRabbit "outside diff" comments pattern: embedded in PR-level review body <details> blocks, not in pulls/$PR/comments
  • Step 1: added pulls/$PR/reviews fetch alongside pulls/$PR/comments to capture outside diff comments
  • Step 1: replaced raw fetch commands with inline --jq filters to avoid != operator, which Claude Code's Bash tool escapes as \!= breaking jq
  • Updated severity table in step 1 with CodeRabbit indicators
  • Current PR context now includes milestone: PR #N: title (state) | Milestone: name
  • Added step 7: verify milestone at end of review; suggest assigning if missing and open milestones exist (never assigns automatically)

github-pr-creation

  • Added .s2s/plans/*.md to task documentation search paths (Spec2Ship projects)
  • Added chore/*, ci/*, docs/* branch patterns to title prefix table
  • Added breaking change handling: add breaking label + ## Breaking changes body section
  • Added step 9: detect open milestones and assign if exactly one is active; ask user if multiple exist
  • Updated gh pr create command with --milestone, --reviewer, correct multi---label syntax
  • Added --draft usage note (WIP, CI wait, AI bot trigger)

github-pr-merge

  • Added step 2: check PR milestone before merge; warn (not block) if open milestones exist but PR has none
  • Added milestone line to pre-merge checklist summary (step 4)
  • Added step 7: after merge, check open_issues on milestone; offer to close it if all items are done
  • Renumbered steps: old 2→3, 3→4, 4→5, 5→6; new steps are 2 and 7

[1.1.0] - 2026-02-07

Added

  • CLAUDE.md: project-level instructions for contributors
  • .gitignore: exclude local settings from version control
  • README.md: "Why these skills?" section with value propositions and Without/With comparison tables for each skill

Changed

git-commit

  • Streamlined SKILL.md from 236 to 54 lines (-77%)
  • Added dynamic context injection (!git log``) to match existing project commit style
  • Removed content Claude already knows (CC types, subject rules, git basics, trailers, breaking changes)
  • Removed merge commits section (belongs to github-pr-creation)
  • Moved good/bad examples to references/commit_examples.md

github-pr-creation

  • Streamlined SKILL.md from 202 to 138 lines (-32%)
  • Added dynamic context injection for current branch and unpushed commits
  • Expanded task documentation search with paths for Kiro, Cursor, Trae, GitHub Issues
  • Reworked label suggestion to check available project labels first via gh label list
  • Trimmed references/pr_templates.md from 461 to 188 lines (templates only)
  • Removed references/conventional_commits.md (duplicated standard CC knowledge)

github-pr-merge

  • Streamlined SKILL.md from 211 to 113 lines (-46%)
  • Added dynamic context injection for current PR info
  • Simplified unreplied comments check to single jq command
  • Removed redundant sections (Quick Start, Pre-Merge Checklist table, Error Handling)

github-pr-review

  • Streamlined SKILL.md from 236 to 111 lines (-53%)
  • Added dynamic context injection for current PR info
  • Integrated reply API gotcha (--input - vs -f) into workflow step
  • Renamed references/gemini_severity_guide.md to references/severity_guide.md
  • Added Cursor comment severity detection to severity guide

creating-skills

  • Streamlined SKILL.md from 262 to 159 lines (-39%)
  • Added complete frontmatter reference (10 fields including allowed-tools, context, agent, hooks)
  • Added invocation control matrix, dynamic features (context injection, string substitutions, subagent execution)
  • Added degrees of freedom concept and assets/ resource type
  • Rewrote references/official_best_practices.md with context budget, frontmatter validation, discovery hierarchy, skills/commands unification
  • Rewrote references/skill_examples.md with 6 concrete examples of new features

[1.0.0] - 2025-12-21

Added

  • Initial release with 5 skills organized in 2 plugins

github-workflow plugin

  • git-commit: Conventional Commits format with type/scope/subject
  • github-pr-creation: PR creation with validation and task tracking
  • github-pr-merge: Pre-merge checklist validation
  • github-pr-review: PR review comment resolution with severity classification

skill-authoring plugin

  • creating-skills: Guide for creating Claude Code skills