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 agentmods add skills/serac-labs/serac/import-exportnpx skills add serac-labs/serac --skill import-exportgit clone --depth 1 https://github.com/serac-labs/seracWrote 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/serac-labs/serac/import-export)<a href="https://agentmods.dev/skills/serac-labs/serac/import-export"><img src="https://agentmods.dev/badge/skills/serac-labs/serac/import-export.svg" alt="Measured on agentmods" height="20"></a>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 | $0.00042 | $0.02953 |
| Opus 5 | $0.00021 | $0.01477 |
| Sonnet 5 | $0.00008 | $0.00591 |
| Haiku 4.5 | $0.00004 | $0.00295 |
Grade A, and why
import-export 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 4d 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 — 485 lines — stays where its author put it; the contents beside it link to each section on GitHub.
Import/Export for ServiceNow
Import/Export handles data migration, bulk operations, and data transfer.
Import/Export Architecture
Data Sources
├── Files (CSV, Excel, XML)
├── JDBC Connections
└── REST/SOAP
Import Process
├── Import Set Tables
├── Transform Maps
└── Target Tables
Export Process
├── Scheduled Exports
├── Report Exports
└── XML Export
Key Tables
| Table | Purpose |
|---|---|
sys_import_set |
Import set records |
sys_data_source |
Data sources |
sys_transform_map |
Transform maps |
sys_export_set |
Export sets |
Data Import (ES5)
Import from CSV
// Import CSV data (ES5 ONLY!)
function importCSVData(csvContent, importSetTable) {
var loader = new GlideImportSetLoader()
// Create import set
var importSet = new GlideRecord("sys_import_set")
importSet.initialize()
importSet.setValue("table_name", importSetTable)
importSet.setValue("state", "loading")
var importSetSysId = importSet.insert()
// Parse CSV
var lines = csvContent.split("\n")
var headers = lines[0].split(",")
// Clean headers
for (var h = 0; h < headers.length; h++) {
headers[h] = headers[h]
.trim()
.toLowerCase()
.replace(/[^a-z0-9]/g, "_")
}
// Import rows
var rowCount = 0
for (var i = 1; i < lines.length; i++) {
if (!lines[i].trim()) continue
var values = parseCSVLine(lines[i])
// Create import set row
var row = new GlideRecord(importSetTable)
row.initialize()
row.setValue("sys_import_set", importSetSysId)
for (var j = 0; j < headers.length && j < values.length; j++) {
var fieldName = "u_" + headers[j]
if (row.isValidField(fieldName)) {
row.setValue(fieldName, values[j])
}
}
row.insert()
rowCount++
}
// Update import set
importSet = new GlideRecord("sys_import_set")
if (importSet.get(importSetSysId)) {
importSet.setValue("state", "loaded")
importSet.setValue("row_count", rowCount)
importSet.update()
}
return {
import_set: importSetSysId,
rows: rowCount,
}
}
function parseCSVLine(line) {
var values = []
var current = ""
var inQuotes = false
for (var i = 0; i < line.length; i++) {
var char = line[i]
if (char === '"') {
inQuotes = !inQuotes
} else if (char === "," && !inQuotes) {
values.push(current.trim())
current = ""
} else {
current += char
}
}
values.push(current.trim())
return values
}
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.
- 4d ago First seen · 485 lines · 42 tokens per session scan A ab21f1be1604
import-export is a skill published in the GitHub repository serac-labs/serac (78 stars, last pushed 9d ago), licensed Apache-2.0. It adds 42 tokens to every session and 2,953 once invoked, about $0.0002 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
sql-analyzer
Analyzes SQL queries for anti-patterns, performance issues, and suggests optimizations.
deploy-docker-compose
Run the Omnigent server as a Docker compose stack (server + Postgres) on any Docker host — your laptop, a VPS, EC2 by hand, or as the base layer of any container-platform deploy. Invoke when the user wants to build the image, bring up the compose stack, debug the stack on a host they already have, or extend the stack…
api-canvas
DataCanvas primitive reference — a Tier 3 SQL/analytical workspace for tabular MCP servers, backed by DuckDB. Use when registering tables from upstream APIs, running ad-hoc SQL across them, and exporting results. Covers the acquire → register → query → export flow, per-table TTL, the token-sharing pattern for…
output-dev-credentials
Store and reference encrypted secrets in Output SDK workflows using @outputai/credentials. Use when integrating API keys, database passwords, or third-party tokens.
migration
How to change the database schema in this repo. Current engine: node-pg-migrate, with SQL generated from Drizzle schema changes when possible. Load whenever you add/alter/drop a table, column, enum, index, constraint, RLS/function/grant, or any file under packages/db/migrations.
usage
Wren Engine CLI workflow guide for AI agents. Answer data questions end-to-end using the wren CLI: gather schema context, recall past queries, write SQL through the MDL semantic layer, execute, and learn from confirmed results. Use when: user asks a data question, requests a report or analysis, asks about metrics…