feat: Add review-staged skill and update autotriage configuration#275
Merged
sellakumaran merged 3 commits intomainfrom Feb 19, 2026
Merged
feat: Add review-staged skill and update autotriage configuration#275sellakumaran merged 3 commits intomainfrom
sellakumaran merged 3 commits intomainfrom
Conversation
Add new Claude Code skill that reviews staged files before committing, using the same rigorous engineering standards as PR reviews. Features: - Reviews all staged files (git diff --staged) - Applies same architectural and code quality standards as review-pr - Generates structured markdown review with severity levels - Catches issues before committing (faster feedback loop) - Context-aware (CLI vs GitHub Actions different standards) - Saves review to .codereviews/claude-staged-<timestamp>.md Usage: /review-staged # Review all staged files /review-staged --verbose # Show detailed analysis Benefits: - Catch issues before committing - Reduce PR review cycles - Learn coding standards through practice - Ship better code faster Related: /review-pr skill for reviewing pull requests Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Update team members to current roster: sellakumaran (Tech Lead), gwharris7, ajmfehr (EM) - Update escalation chain with new leadership structure - Reassign security issues to sellakumaran - Elevate documentation issues to P1 priority to support agent-first development - Add documentation keywords (docs, readme, guide) to P1 classification This change ensures accurate issue routing and reflects the strategic importance of high-quality documentation for agent builders using Agent365. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Dependency Review✅ No vulnerabilities or license issues or OpenSSF Scorecard issues found.Scanned FilesNone |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR introduces a new review-staged skill for pre-commit code review and updates the AutoTriage configuration to reflect the current team structure and strategic priorities.
Changes:
- New Claude Code skill (
review-staged) that reviews git-staged files before committing, providing early feedback using the same standards as PR reviews - Updated AutoTriage team configuration with current roster (sellakumaran, gwharris7, ajmfehr)
- Elevated documentation issues to P1 priority by adding "documentation", "docs", "readme", "guide" keywords to p1_keywords
Reviewed changes
Copilot reviewed 4 out of 4 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
.claude/skills/review-staged/SKILL.md |
Skill definition for the new review-staged feature with YAML frontmatter, usage examples, and engineering principles |
.claude/skills/review-staged/README.md |
Comprehensive documentation for review-staged skill including quick start guide, severity levels, workflow integration, and troubleshooting |
autoTriage/services/config_parser.py |
Added documentation-related keywords to P1 priority defaults in both _parse_priority_rules() and _default_config() methods |
autoTriage/config/team-members.json |
Updated team roster to current members, escalation chain, and security assignee; added "documentation" to sellakumaran's expertise |
ajmfehr
previously approved these changes
Feb 18, 2026
gwharris7
approved these changes
Feb 18, 2026
ajmfehr
approved these changes
Feb 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
This PR introduces two key improvements to developer workflows:
1. Review-Staged Skill ✨
A new Claude Code skill that reviews staged files before committing, catching issues early in the development process.
Features:
git diff --staged/review-pr.codereviews/claude-staged-<timestamp>.mdUsage:
Benefits:
2. AutoTriage Configuration Updates 🔧
Updates team configuration and priority rules to reflect current team structure and strategic priorities.
Changes:
Related
/review-prskill (PR review after creation).claude/agents/pr-code-reviewer.md(review guidelines)