From workhuman-pack
Implements Workhuman Social Recognition API ops in TypeScript: list recognitions, create nominations, check status, list rewards. For HR recognition workflows.
How this skill is triggered — by the user, by Claude, or both
Slash command
/workhuman-pack:workhuman-hello-worldThis skill is limited to the following tools:
The summary Claude sees in its skill listing — used to decide when to auto-load this skill
Create a recognition nomination and list recent recognitions -- the two fundamental Workhuman API operations. Workhuman Social Recognition enables peer-to-peer and manager-to-employee recognition with points-based rewards.
Create a recognition nomination and list recent recognitions -- the two fundamental Workhuman API operations. Workhuman Social Recognition enables peer-to-peer and manager-to-employee recognition with points-based rewards.
const { data: recognitions } = await api.get('/api/v1/recognitions', {
params: { limit: 10, sort: '-created_at' },
});
recognitions.data.forEach((rec: any) => {
console.log(`${rec.nominator.name} recognized ${rec.recipient.name}`);
console.log(` Award: ${rec.award_level} | Points: ${rec.points}`);
console.log(` Message: ${rec.message}`);
console.log(` Value: ${rec.company_value}`);
});
const nomination = await api.post('/api/v1/recognitions', {
recipient_id: 'emp-12345',
award_level: 'silver',
company_value: 'innovation',
message: 'Outstanding work on the Q1 product launch. Your innovative approach to the deployment pipeline saved the team 3 days of work.',
points: 500,
visibility: 'public', // 'public', 'team', 'private'
});
console.log(`Recognition created: ${nomination.data.id}`);
console.log(`Status: ${nomination.data.status}`); // pending_approval or approved
const { data: status } = await api.get(`/api/v1/recognitions/${nomination.data.id}`);
console.log(`Status: ${status.status}`);
// Status: pending_approval -> approved -> delivered
const { data: catalog } = await api.get('/api/v1/rewards/catalog', {
params: { category: 'gift_cards', country: 'US' },
});
catalog.items.forEach((item: any) => {
console.log(`${item.name} - ${item.points_required} points`);
});
Jane Smith recognized Alex Johnson
Award: Silver | Points: 500
Message: Outstanding work on the Q1 product launch...
Value: Innovation
Recognition created: rec-67890
Status: pending_approval
| Error | Cause | Solution |
|---|---|---|
422 on nomination | Missing required field | Include recipient, award_level, message |
404 recipient | Invalid employee ID | Verify against HRIS sync |
403 award level | Insufficient budget | Check recognition budget limits |
Proceed to workhuman-local-dev-loop for development workflow.
npx claudepluginhub jeremylongshore/claude-code-plugins-plus-skills --plugin workhuman-packGuides integration with Workhuman Social Recognition API for employee rewards and nominations, covering OAuth auth, REST endpoints, HRIS sync, and error handling.
Guides managers in delivering specific, timely recognition that reinforces employee contributions and builds engagement.
Congratulates the user for successful task completion. Invoke with /Goodjob or automatic activation on positive outcomes.