Use JSN safely

JSN defaults to inspection first and puts explicit gates around destructive ServiceNow changes.

Safe by default

Use a read-only profile while exploring. Deletes require an explicit force flag, and mutation commands show what they are going to change.

jsn auth modify <profile>
jsn records list --table incident --query "active=true"
jsn records delete --table incident --sys-id <id> --force

Treat --force as a deliberate boundary, not a convenience flag. Test against the correct profile, scope, and update set before changing an instance.

Read about safe deletion.