persona-hr-coordinator

Handle HR workflows — onboarding, announcements, and employee comms.

5 stars

Best use case

persona-hr-coordinator is best used when you need a repeatable AI agent workflow instead of a one-off prompt.

Handle HR workflows — onboarding, announcements, and employee comms.

Teams using persona-hr-coordinator should expect a more consistent output, faster repeated execution, less prompt rewriting.

When to use this skill

  • You want a reusable workflow that can be run more than once with consistent structure.

When not to use this skill

  • You only need a quick one-off answer and do not need a reusable workflow.
  • You cannot install or maintain the underlying files, dependencies, or repository context.

Installation

Claude Code / Cursor / Codex

$curl -o ~/.claude/skills/persona-hr-coordinator/SKILL.md --create-dirs "https://raw.githubusercontent.com/pleaseai/claude-code-plugins/main/plugins/google-workspace/skills/persona-hr-coordinator/SKILL.md"

Manual Installation

  1. Download SKILL.md from GitHub
  2. Place it in .claude/skills/persona-hr-coordinator/SKILL.md inside your project
  3. Restart your AI agent — it will auto-discover the skill

How persona-hr-coordinator Compares

Feature / Agentpersona-hr-coordinatorStandard Approach
Platform SupportNot specifiedLimited / Varies
Context Awareness High Baseline
Installation ComplexityUnknownN/A

Frequently Asked Questions

What does this skill do?

Handle HR workflows — onboarding, announcements, and employee comms.

Where can I find the source code?

You can find the source code on GitHub using the link provided at the top of the page.

SKILL.md Source

# HR Coordinator

> **PREREQUISITE:** Load the following utility skills to operate as this persona: `gws-gmail`, `gws-calendar`, `gws-drive`, `gws-chat`, `gws-admin`

Handle HR workflows — onboarding, announcements, and employee comms.

## Relevant Workflows
- `gws workflow +email-to-task`
- `gws workflow +file-announce`

## Instructions
- For new hire onboarding, create calendar events for orientation sessions with `gws calendar +insert`.
- Upload onboarding docs to a shared Drive folder with `gws drive +upload`.
- Announce new hires in Chat spaces with `gws workflow +file-announce` to share their profile doc.
- Convert email requests into tracked tasks with `gws workflow +email-to-task`.
- Send bulk announcements with `gws gmail +send` — use clear subject lines.

## Tips
- Always use `--sanitize` for PII-sensitive operations.
- Create a dedicated 'HR Onboarding' calendar for tracking orientation schedules.
- Use `gws admin` for user account management (creating accounts, resetting passwords).

Related Skills

recipe-send-personalized-emails

5
from pleaseai/claude-code-plugins

Read recipient data from Google Sheets and send personalized Gmail messages to each row.

persona-team-lead

5
from pleaseai/claude-code-plugins

Lead a team — run standups, coordinate tasks, and communicate.

persona-sales-ops

5
from pleaseai/claude-code-plugins

Manage sales workflows — track deals, schedule calls, client comms.

persona-researcher

5
from pleaseai/claude-code-plugins

Organize research — manage references, notes, and collaboration.

persona-project-manager

5
from pleaseai/claude-code-plugins

Coordinate projects — track tasks, schedule meetings, and share docs.

persona-it-admin

5
from pleaseai/claude-code-plugins

Administer IT — manage users, monitor security, configure Workspace.

persona-exec-assistant

5
from pleaseai/claude-code-plugins

Manage an executive's schedule, inbox, and communications.

persona-event-coordinator

5
from pleaseai/claude-code-plugins

Plan and manage events — scheduling, invitations, and logistics.

persona-customer-support

5
from pleaseai/claude-code-plugins

Manage customer support — track tickets, respond, escalate issues.

persona-content-creator

5
from pleaseai/claude-code-plugins

Create, organize, and distribute content across Workspace.

use-zod

5
from pleaseai/claude-code-plugins

Answer questions about the Zod schema validation library and help build schemas, parsers, refinements, transforms, codecs, and error formatters. Use when developers: (1) ask about Zod APIs like `z.object`, `z.string`, `z.array`, `z.union`, `z.discriminatedUnion`, `parse`, `safeParse`, `z.infer`; (2) define request/response/form schemas in TypeScript; (3) handle `ZodError` or customize error messages; (4) migrate between Zod v3 and v4 (entry-point split, `formatError` → `treeifyError`/`prettifyError`, unified `error` param replacing `message`/`errorMap`). Triggers on: "zod", "z.object", "z.string", "z.array", "z.union", "z.infer", "z.input", "z.output", "ZodError", "$ZodError", "safeParse", "parseAsync", "z.codec", "treeifyError", "prettifyError", "flattenError", "discriminatedUnion", "zod/v4", "zod/v3", "zod/mini", "z.coerce", "superRefine".

workflow

5
from pleaseai/claude-code-plugins

Creates durable, resumable workflows using Vercel's Workflow SDK. Use when building workflows that need to survive restarts, pause for external events, retry on failure, or coordinate multi-step operations over time. Triggers on mentions of "workflow", "durable functions", "resumable", "workflow sdk", "queue", "event", "push", "subscribe", or step-based orchestration.