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.
npx skills add Knuckles-Team/servicenow-api --skill servicenow-workflow-studiogit clone --depth 1 https://github.com/Knuckles-Team/servicenow-apiWrote 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.
[](https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-workflow-studio)<a href="https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-workflow-studio"><img src="https://agentmods.dev/badge/skills/knuckles-team/servicenow-api/servicenow-workflow-studio/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.
<a href="https://agentmods.dev/skills/knuckles-team/servicenow-api/servicenow-workflow-studio"><img src="https://agentmods.dev/badge/skills/knuckles-team/servicenow-api/servicenow-workflow-studio.svg" alt="Reviewed on agentmods" width="80" height="20"></a>- NVIDIA SkillSpector pass
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.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00199 | $0.01553 |
| Opus 5 | $0.00100 | $0.00776 |
| Sonnet 5 | $0.00040 | $0.00311 |
| Haiku 4.5 | $0.00020 | $0.00155 |
Grade A, and why
servicenow-workflow-studio 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 10d 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.
How it starts
The opening of the file, as written. The whole thing — 111 lines — stays where its author put it; the contents beside it link to each section on GitHub.
ServiceNow Workflow Studio (Flow Designer as code)
Flow Designer is ServiceNow's low-code automation surface. The Fluent
@servicenow/sdk/automation API expresses the same flows/subflows/actions as
TypeScript source, so they live in a repo and ship through the SDK lifecycle. This skill
is about authoring that code and mapping it back to the UI — it defers build/deploy
to servicenow-sdk-lifecycle.
When to use
- Writing a
Flow(...),Subflow(...), orScriptAction(...)in Fluent. - Choosing/configuring a trigger (record or application).
- Adding flow logic: if / elseIf / else / forEach / waitForCondition / endFlow.
- Wiring data pills between a trigger, action outputs, and downstream inputs.
- Introspecting a deployed flow's structure (mermaid graph, metadata) via MCP.
When NOT to use
- Building/deploying/testing the containing app →
servicenow-sdk-lifecycle. - Scoped-app anatomy / App Engine Studio →
servicenow-app-engine. - Reading the raw samples →
servicenow-sdk-docs. - Ad-hoc live record CRUD →
servicenow-table-api.
Canonical samples (cross-reference — never copy in)
Every construct below has a worked example bundled in the sibling skill:
- Flows, subflows, triggers, flow logic, data pills:
servicenow-sdk-docs→assets/samples/flow-sample/andreferences/flow-sample.md. - Script actions (
sysevent_script_action):servicenow-sdk-docs→assets/samples/scriptaction-sample/andreferences/scriptaction-sample.md.
Open those when you need a full, real file; the references here teach the shape and rules so you can compose new ones.
The shape of a flow
import { action, Flow, wfa, trigger } from '@servicenow/sdk/automation'
export const myFlow = Flow(
{ $id: Now.ID['my_flow'], name: 'My Flow', description: '...' },
wfa.trigger(trigger.record.created, { $id: Now.ID['trg'] }, { table: 'incident', condition: 'active=true' }),
(params) => {
wfa.action(action.core.log, { $id: Now.ID['log'] }, { log_level: 'info', log_message: '...' })
// flow logic, more actions, data pills ...
},
)
Three positional arguments: metadata ($id/name/description), a trigger
(wfa.trigger), and the body (params) => { ... }. params.trigger.* exposes trigger
outputs to the body.
What ships with it
7 files 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.
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.
- 10d ago First seen · 111 lines · 199 tokens per session scan A fa19ce83f6f9
servicenow-workflow-studio is a skill published in the GitHub repository Knuckles-Team/servicenow-api (19 stars, last pushed 12d ago), licensed MIT. It adds 199 tokens to every session and 1,553 once invoked, about $0.0010 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.
Other skills, from other repositories
servicenow-expert
Expert in ServiceNow platform development, scripting, workflows, Service Portal, CMDB, ITSM modules, and integrations. Use when the user mentions ITSM, ITOM, workflow, automation, CMDB, or service portal, or when the task involves ServiceNow Platform, Development Components, Scripting APIs, or GlideRecord Query and…
n8n-workflow-engineer
Engineering and generating robust n8n workflow JSON schemas from instructions.
clawaimail
Email infrastructure for AI agents — create inboxes, send and receive real emails, search messages, manage threads. Alternative to AgentMail with MCP server, REST API, webhooks, and WebSocket streaming.
ai-sdk
Answer questions about the AI SDK and help build AI-powered features. Use when developers: (1) Ask about AI SDK functions like generateText, streamText, ToolLoopAgent, embed, or tools, (2) Want to build AI agents, chatbots, RAG systems, or text generation features, (3) Have questions about AI providers (OpenAI…
n8n-code-tool
Write JavaScript or Python for the n8n Custom Code Tool (@n8n/n8n-nodes-langchain.toolCode) — the AI-agent-callable tool, NOT the workflow Code node. Use when building a Code Tool attached to an AI Agent, writing code that an LLM will invoke, parsing the query input, returning a string result, defining an input schema…
n8n-subworkflows
Build reusable, composable n8n sub-workflows. Use when extracting shared logic, building anything multi-step or reused across workflows, or any workflow over 10 nodes — and whenever the user mentions sub-workflows, Execute Workflow, reuse, shared/common logic, modular workflows, "Define Below" inputs…