performance-review
Generate performance review documentation and facilitate evaluation processes
What this skill does
# Performance Review Generator Skill
## Overview
The Performance Review Generator skill provides capabilities for creating performance evaluation documentation and facilitating the review process. This skill enables self-assessments, manager evaluations, calibration frameworks, and development planning.
## Capabilities
### Self-Assessment Templates
- Create self-assessment templates by role
- Generate competency-based questions
- Include goal achievement sections
- Add development reflection prompts
- Support evidence documentation
### Manager Evaluation Forms
- Generate manager evaluation forms with competencies
- Create role-specific rating criteria
- Build behaviorally-anchored scales
- Include narrative feedback sections
- Support multi-rater input
### Calibration Support
- Build calibration session frameworks
- Create rating distribution guidelines
- Generate discussion guides
- Support forced ranking exercises
- Track calibration outcomes
### Rating Calculations
- Calculate performance ratings and distributions
- Apply weighting formulas
- Generate calibrated scores
- Track rating history
- Identify rating patterns
### Performance Summaries
- Generate performance summary documents
- Create year-over-year comparisons
- Summarize strengths and development areas
- Document key accomplishments
- Include stakeholder feedback
### Development Planning
- Create development recommendation templates
- Link performance gaps to development actions
- Generate IDP suggestions
- Track development progress
- Connect to learning resources
### Process Management
- Track review completion and deadlines
- Send reminder notifications
- Monitor compliance rates
- Generate status reports
- Manage review cycles
## Usage
### Review Form Generation
```javascript
const reviewConfig = {
cycle: 'Annual Review 2026',
employee: {
id: 'EMP-12345',
role: 'Senior Engineer',
department: 'Engineering',
manager: 'MGR-67890'
},
sections: [
{
type: 'goal-achievement',
weight: 40,
goals: ['Q1-OKR-001', 'Q2-OKR-002', 'Q3-OKR-003', 'Q4-OKR-004']
},
{
type: 'competency-assessment',
weight: 40,
competencies: ['Technical Excellence', 'Collaboration', 'Innovation', 'Leadership']
},
{
type: 'values-alignment',
weight: 20,
values: ['Customer Focus', 'Integrity', 'Growth Mindset']
}
],
ratingScale: {
type: '5-point',
labels: ['Needs Improvement', 'Developing', 'Meets Expectations', 'Exceeds', 'Exceptional']
}
};
```
### Calibration Session Setup
```javascript
const calibrationConfig = {
session: 'Engineering Calibration Q4-2026',
managers: ['MGR-001', 'MGR-002', 'MGR-003'],
employees: ['EMP-list'],
guidelines: {
distribution: 'recommended',
targetDistribution: {
exceptional: 10,
exceeds: 20,
meets: 55,
developing: 10,
needsImprovement: 5
}
},
discussionFormat: {
orderBy: 'rating-then-tenure',
timePerEmployee: 5,
focusAreas: ['rating-changes', 'promotion-ready', 'development-needed']
}
};
```
## Process Integration
This skill integrates with the following HR processes:
| Process | Integration Points |
|---------|-------------------|
| performance-review-cycle.js | Full review workflow |
| 360-degree-feedback.js | Multi-rater integration |
| performance-improvement-plan.js | Low performer identification |
## Best Practices
1. **Clear Criteria**: Define performance standards before the cycle
2. **Ongoing Feedback**: Reviews should summarize, not surprise
3. **Evidence-Based**: Require examples to support ratings
4. **Calibration**: Always calibrate before finalizing ratings
5. **Development Focus**: Balance evaluation with growth planning
6. **Timeliness**: Complete reviews within defined windows
## Metrics and KPIs
| Metric | Description | Target |
|--------|-------------|--------|
| Completion Rate | Reviews completed on time | >95% |
| Distribution Health | Alignment with guidelines | Within 5% |
| Feedback Quality | Narrative word count and specificity | >200 words |
| Employee Satisfaction | Survey of process fairness | >70% |
| Development Planning | Employees with IDPs | 100% |
## Related Skills
- SK-005: OKR Management (goal integration)
- SK-007: 360 Feedback (multi-rater input)
- SK-008: PIP Documentation (low performer support)
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.