servicenow-hr-ppm

servicenow-hr-ppm is a skill for Claude Code, Codex from Knuckles-Team/servicenow-api. It costs 133 tokens per session (1,200 once invoked), scanned A, original, MIT.

A ServiceNow guide for reading employee HR profiles and adding project financial plans or task breakdowns.

In plain words
What is it for?
Use it to retrieve an employee's HR profile, insert project cost plans, and create project tasks under a project or demand.
Why use it?
It provides focused operations for ServiceNow HR Service Delivery and Project Portfolio Management instead of requiring users to work out the underlying table details.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it to retrieve an employee's HR profile, insert project cost plans, and create project tasks under a project or demand.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/knuckles-team/servicenow-api/servicenow-hr-ppm
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add Knuckles-Team/servicenow-api --skill servicenow-hr-ppm
Clone the repo
git clone --depth 1 https://github.com/Knuckles-Team/servicenow-api

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for servicenow-hr-ppm

README.md
[![agentmods](https://agentmods.dev/badge/skills/knuckles-team/servicenow-api/servicenow-hr-ppm/github.svg)](https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-hr-ppm)
Your own site
<a href="https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-hr-ppm"><img src="https://agentmods.dev/badge/skills/knuckles-team/servicenow-api/servicenow-hr-ppm/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for servicenow-hr-ppm

Your own site · 80×15
<a href="https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-hr-ppm"><img src="https://agentmods.dev/badge/skills/knuckles-team/servicenow-api/servicenow-hr-ppm.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 133 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,200 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00133 $0.01200
Opus 5 $0.00067 $0.00600
Sonnet 5 $0.00027 $0.00240
Haiku 4.5 $0.00013 $0.00120

Measured 11d ago against content hash 0f12b19c1e07, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-11, from the pricing page.

Security

Grade A, and why

servicenow-hr-ppm scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 11d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

servicenow_api/skills/servicenow-hr-ppm/SKILL.md · 94 lines

How it starts

The opening of the file, as written. The whole thing — 94 lines — stays where its author put it; the contents beside it link to each section on GitHub.

ServiceNow HR & PPM

The dedicated endpoints for HR Service Delivery profiles and Project Portfolio Management financials/work-breakdown. Two condensed tools.

When to use

  • Retrieve an employee's HR profile (get_hr_profile).
  • Insert PPM cost plans against a project/demand (insert_cost_plans).
  • Insert project tasks (work breakdown) under a project (insert_project_tasks).

When NOT to use

  • Generic reads/writes on hr_* or pm_* tables the dedicated API doesn't cover → servicenow-table-api (drive the scoped tables directly).
  • App deploy, scans, update sets, ATF → servicenow-cicd-devops.
  • Bulk row ingest / attachments / batch → servicenow-import-attachment-batch.
  • Email, flow rendering, metricbase, app metadata → servicenow-platform-utilities.

Prerequisites & environment

Connect via the mcp-client skill against the servicenow-api MCP server.

Variable Required Notes
SERVICENOW_INSTANCE Instance URL (alias SERVICENOW_URL)
SERVICENOW_USERNAME Basic-auth user
SERVICENOW_PASSWORD Basic-auth password
SERVICENOW_CLIENT_ID / SERVICENOW_CLIENT_SECRET optional OAuth2
SERVICENOW_SSL_VERIFY optional TLS verification toggle

Full env/tag matrix (do not re-document here): the mcp-client reference agent-tools/mcp-client/references/servicenow-api.md. MCP_TOOL_MODE (condensed|verbose|both) selects the condensed surface (used below) vs. the one-to-one verbose tools.

Tools & actions

Prefer the condensed tools; each takes action + a params_json JSON string whose keys are passed straight to the client method.

Condensed tool Actions
servicenow_hr get_hr_profile
servicenow_ppm insert_cost_plans, insert_project_tasks

Key parameters

  • HR: sys_id (the HR profile / worker sys_user reference) — discover it via servicenow-table-api on sys_user / sn_hr_core_profile if you only have a name.
  • PPM cost plans: project_sys_id (or demand), cost_plans — an array of plan rows (name, cost, fiscal period, unit).
  • PPM project tasks: project_sys_id, project_tasks — an array of task rows (short_description, parent, planned start/end, effort).

Read the full file on GitHub · 94 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 11d ago First seen · 94 lines · 133 tokens per session scan A 0f12b19c1e07

Subscribe to this mod's changes

servicenow-hr-ppm is a skill published in the GitHub repository Knuckles-Team/servicenow-api (19 stars, last pushed 13d ago), licensed MIT. It adds 133 tokens to every session and 1,200 once invoked, about $0.0007 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

daily-briefing

Start your day with a prioritized CRM briefing — works for any monday CRM setup: pipeline, contacts, accounts, leads, or no board at all. Use when someone says 'morning briefing', 'daily brief', 'what's on my plate today', 'catch me up on my deals', 'what needs attention', 'what needs my attention', 'anything urgent…

mondaycom/mcp · 106 tokens

meeting-to-deal

Turn meeting transcripts into deal updates — key points, commitments, and next steps posted to matching CRM deals automatically. Auto-creates contacts for new attendees. Use when someone says "log my meetings to deals", "update CRM from calls", "what did I commit to in meetings", "sync notetaker", "log this meeting"…

mondaycom/mcp · 107 tokens

Technical Debt Tracking with PMAT

Tracks and manages technical debt using PMAT (Pragmatic AI Labs MCP Agent Toolkit). Use this skill when: User asks about technical debt, TODO comments, or code quality issues Planning sprint work and need to prioritize debt repayment Conducting code audits or technical debt assessments Tracking debt accumulation…

paiml/paiml-mcp-agent-toolkit · 123 tokens

change-management

Create and transition ServiceNow change requests (normal/standard/emergency), change tasks, affected CIs, approval routing, CAB scheduling, and conflict detection across maintenance windows.

serac-labs/serac · 37 tokens

incident-management

Manage ServiceNow incidents — creation with impact/urgency priority calc, auto-assignment by category, reassignment tracking, major incident declaration with bridge calls, time-based escalation, MTTR metrics.

serac-labs/serac · 42 tokens

vendor-management

Manage ServiceNow vendors and contracts — corecompany vendor records, astcontract with renewal alerts, astcontractsla performance tracking, vendorriskassessment scoring, and vendor scorecards.

serac-labs/serac · 40 tokens