sync_now
49Command
Immediately sync all pending files (flush the queue). Use this after making multiple file changes to ensure they're synced before continuing.
Command
Immediately sync all pending files (flush the queue). Use this after making multiple file changes to ensure they're synced before continuing.
Command
Take a screenshot of a ServiceNow page. The browser picks the best capture path it actually has — no capability juggling needed on your side.
Command
Update a single field on an existing record. Fire-and-forget (the extension sends the update through the helper tab; success is reported back asynchronously).
Command
Update multiple fields on the same record in one round-trip. Preferred for multi-file artifacts (widgets, UI pages) where you'd otherwise send many updaterecord calls.
Command
Upload a file (image, document, etc.) as an attachment to any ServiceNow record.
Command
Validate a proposed file path before creating it.
Skill Claude CodeCodex
SN ScriptSync HTTP/file Agent API: endpoint discovery, auth, the full error-code table, and the complete command catalog (queryrecords, getrecord, updaterecord, createartifact, createapplication, restrequest, screenshots, etc.). Read this before calling any Agent API command.
Skill Claude CodeCodex
Build/edit ServiceNow AI Experience (AIX) apps on the sysaix tables: experiences, pages, containers, custom Lit widgets + server data scripts, left-nav menus, and record click-through. Covers routing/cache rules, why creation needs a background script (REST = EACL), the widget compile-metadata pattern, and the…
Skill Claude CodeCodex
How sn-scriptsync maps ServiceNow artifacts to files: the instance/scope/table layout, naming conventions per artifact type, creating new artifacts, and the map.json / structure.json files. Read this when creating, naming, or organizing ServiceNow files.
Skill Claude CodeCodex
Drive the connected ServiceNow tab through the Chrome DevTools Protocol (Pro): capture network requests + response bodies, capture console output and uncaught exceptions, take full-page/element screenshots beyond the viewport, and auto-handle (and record) native confirm/alert/prompt/beforeunload dialogs. Read this…
Skill Claude CodeCodex
ServiceNow coding standards (scoped-app restrictions, server vs client APIs, best practices) and security guidance for the sn-scriptsync workflow. Read this when writing or reviewing ServiceNow script content.
Skill Claude CodeCodex
Drive live ServiceNow forms via the gform bridge (navigate, setfield, getformstate, runuiaction, clickelement): insert vs update verbs, optimistic-write verification, auto-handled native dialogs, and auto-filling mandatory reference fields. Read this when automating or visually verifying a form/UI page/widget.