Agent Skill · Frontline

export-and-delete

How to export data and delete tables or objects using the Frontline CLI. Use when you need to download records as XLSX/CSV files or permanently remove a table or object and all its data.

Provider: Frontline Path in repo: export-and-delete/SKILL.md

Skill body

Export & Delete Operations

Exporting Data

Export records from a table or object as an XLSX spreadsheet or CSV file. Exports support the same query/search/sort filters used for listing.

Export as XLSX

frontline table export xlsx <name> [--output file.xlsx]
frontline object export xlsx <name> [--output file.xlsx]
# Export all people
frontline object export xlsx people

# Export with filter (high-value deals only)
frontline object export xlsx deals \
  --query '{"path": "[Amount]", "operator": "gte", "value": 10000}' \
  --output big_deals.xlsx

# Export with search + sort
frontline table export xlsx sales_data \
  --search "enterprise" \
  --sort '[{"path": "[Revenue]", "type": "desc"}]' \
  --output enterprise_sales.xlsx

Export as CSV

frontline table export csv <name> [--output file.csv]
frontline object export csv <name> [--output file.csv]
# Export all records as CSV
frontline object export csv people --output people_backup.csv

Default Output

If --output is not specified:

Deleting Tables/Objects

[!CAUTION] These operations are destructive and irreversible. All rows, fields, views, record types, and associated data will be permanently deleted.

Delete a Table

frontline table delete <name>

Delete an Object

frontline object delete <name>

Response

{ "deleted": true, "name": "my_table" }

Workflow: Backup Then Delete

Always export before deleting:

# 1. Export everything
frontline object export xlsx legacy_deals --output legacy_deals_backup.xlsx

# 2. Verify the export file exists and looks right
ls -la legacy_deals_backup.xlsx

# 3. Delete the object
frontline object delete legacy_deals

See also

Skill frontmatter

allowed-tools: Bash(frontline:*)

Work with this as data

Every skill here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for agent skills

4 MCP tools reach this
  • find_skillsBrowse and filter every skill in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This skill
curl "https://apis.io/api/v1/skills/export-and-delete"
All agent skills
curl "https://apis.io/api/v1/skills?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.