HR & People
Performance Summary
Review-cycle summary — overall rating, per-dimension scores with evidence, strengths, and next-period goals.
The contract
Fields your API call provides. Amounts and totals are always computed by the caller — templates only format.
| goals[].text | string | required |
| overall.summary | string | required |
| overall.rating_label | string | required |
| ratings[].comment | string | required |
| ratings[].dimension | string | required |
| ratings[].score_label | string | required |
| employee.name | string | required |
| employee.title | string | required |
| employee.manager | string | required |
| strengths[].text | string | required |
| prepared_on | string | required |
| review_period | string | required |
MCP-ready: forks of this template will expose generate_performance_summary when the MCP server ships.
Generate it (after you fork & publish)
curl -X POST https://your-paperbrain-host/api/generate/gen_<your-id> \
-H "Content-Type: application/json" \
-d '{
"goals": [
{
"text": "Lead a cross-team initiative end to end (target: payments platform consolidation)"
},
{
"text": "Present one architecture deep-dive per quarter to the broader org"
}
],
"overall": {
"summary": "Jordan shipped the two highest-impact platform projects of the half, raised the team's review bar, and became the go-to engineer for incident response.",
"rating_label": "Exceeds expectations"
},
"ratings": [
{
"comment": "Led the billing migration two weeks ahead of plan with zero rollbacks",
"dimension": "Execution",
"score_label": "5/5"
},
{
"comment": "Post-ship defect rate lowest on the team; tests consistently thorough",
"dimension": "Craft & quality",
"score_label": "4/5"
},
{
"comment": "Mentored two mid-level engineers; design docs are the team standard",
"dimension": "Collaboration",
"score_label": "4/5"
}
],
"employee": {
"name": "Jordan Reyes",
"title": "Senior Product Engineer",
"manager": "Aisha Karim"
},
"strengths": [
{
"text": "Turns ambiguous problem statements into crisp, staged delivery plans"
},
{
"text": "Calm, methodical incident leadership under pressure"
}
],
"prepared_on": "2026-06-08",
"review_period": "H1 2026"
}'gen_<your-id>is your generator's id once you fork and publish. The body shown is this template's sample data — the exact shape the contract validates.