servicenow-sdk Plugin
Plugin Claude Code Development Enterprise Business PlatformsClaude Code Customization & WorkflowThe explanation below is AI-generated. Please verify it against the sources.
servicenow-sdk is a Claude plugin that packages an AI agent skill ("now-sdk") teaching Claude how to use the @servicenow/sdk CLI to build, edit, and deploy ServiceNow applications defined with ServiceNow Fluent. Fluent is a TypeScript-based domain-specific language that lets developers define application metadata (such as Acl, BusinessRule, ClientScript, Role, and other record types) as code instead of configuring records through the ServiceNow UI. The skill relies on SDK version 4.6.0 or newer, and it guides the agent through CLI discovery (npx @servicenow/sdk --help), documentation lookup, and live instance queries via the explain and query subcommands. According to the README, the plugin is installed in Claude Code with the commands "/plugin install servicenow-sdk@claude-plugins-official" followed by "/reload-plugins," and the skill is automatically triggered when working in a Fluent app or when ServiceNow/Fluent topics are mentioned. The homepage also notes a lightweight llms.txt reference and a versions.json index that agents can use to fetch documentation matching the installed SDK version.
Overview
ServiceNow SDK is a toolset for developing ServiceNow applications in source code using ServiceNow Fluent, a TypeScript-based DSL whose typed API functions map directly to platform records (Acl, BusinessRule, ClientScript, Table, Workspace, etc.). Instead of configuring records through the ServiceNow UI, developers write Fluent code and deploy it with the SDK CLI (installed via "npm install @servicenow/sdk -d").
What you can do with servicenow-sdk
- Install the servicenow-sdk plugin in Claude Code via /plugin install servicenow-sdk@claude-plugins-official and /reload-plugins
- Let the "now-sdk" skill guide Claude through CLI discovery using npx @servicenow/sdk --help and explain quickstart
- Use the explain and query subcommands to look up platform conventions, metadata types, and project structure, including live instance queries
- Write application metadata as TypeScript code using Fluent API functions imported from @servicenow/sdk/core (e.g., Acl, BusinessRule, Role, ClientScript, Table)
- Reference the API documentation via the homepage's API Reference section, llms.txt, or versions.json to match guidance to the installed SDK version (4.6.0+ required for the AI skill)
- Deploy the resulting Fluent applications to a ServiceNow instance using the SDK
Sources
Original description (English)
Create, edit, and deploy ServiceNow applications with the Fluent SDK effortlessly through Claude AI.
History of servicenow-sdk
- Plugin Added servicenow-sdk