exploring-tables-f7d0d6 — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited exploring-tables-f7d0d6 (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
General-purpose table exploration — schema discovery, data profiling, and table comparison.
Get the full picture of any ServiceNow table.
Progress checklist (copy into your response):
- [ ] Get table schema
- [ ] Pull sample records
- [ ] Summarize field types, mandatory fields, reference fields get_table_schema(table_name="<table_name>") list_records(table_name="<table_name>", limit=5)Side-by-side schema comparison between two related tables.
Progress checklist:
- [ ] Get schema for table A
- [ ] Get schema for table B
- [ ] Compare field overlap and differences get_table_schema(table_name="<table_a>")
get_table_schema(table_name="<table_b>")Discover tables matching a keyword by querying sys_db_object.
Progress checklist:
- [ ] Query sys_db_object for matching tables
- [ ] Get record counts for top matches
- [ ] Summarize results list_records(table_name="sys_db_object", query="nameLIKE<keyword>", fields="name,label,super_class,sys_id", limit=20) list_records(table_name="<matched_table>", limit=1)Sample records and assess data quality for a table.
Progress checklist:
- [ ] Get table schema
- [ ] Pull sample records
- [ ] Check null rates on key fields
- [ ] Identify unused or sparse columns get_table_schema(table_name="<table_name>") list_records(table_name="<table_name>", limit=20) list_records(table_name="<table_name>", query="<field_name>ISEMPTY", limit=1, fields="sys_id")fields parameter to limit returned data: fields="sys_id,name,state".sys_db_object table contains all table definitions. Use it to discover tables by keyword.sys_dictionary table contains field-level metadata. Query it for advanced schema details: list_records(table_name="sys_dictionary", query="name=<table_name>").= (equals), LIKE (contains), ISEMPTY (null), ^ (AND), ^OR (OR).~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.