Agent Skill · Frontline

files

How to list, get, download, and delete files attached to rows in tables and objects using the Frontline CLI.

Provider: Frontline Path in repo: files/SKILL.md

Skill body

File Management

Files are binary attachments linked to individual rows. Each file has an auto-incremented ID, original filename, content type, and size.

Note: File upload via CLI is not yet supported because it requires multipart form-data. Use the web UI or direct API calls for uploads.

List Files for a Row

frontline object file list <object> <row-id>
frontline table file list <table> <row-id>

Returns an array of file objects with id, originalName, contentType, size, and createdAt.

Get File Metadata

frontline object file get <object> <file-id>
frontline table file get <table> <file-id>

Download a File

# Download to current directory (uses original filename)
frontline object file download <object> <file-id>

# Download to a specific path
frontline object file download <object> <file-id> --output ./contracts/proposal.pdf
frontline table file download <table> <file-id> --output ./data/report.xlsx

Delete a File

frontline object file delete <object> <file-id>
frontline table file delete <table> <file-id>

Typical Workflow

# 1. Find the row
frontline object row list deals --search "Acme Corp"
# → row ID = 6625abc123def456

# 2. List attached files
frontline object file list deals 6625abc123def456
# → [{ id: 15, originalName: "contract_v2.pdf", size: 245000, ... }]

# 3. Download a file
frontline object file download deals 15 --output ./contract_v2.pdf

# 4. Delete an outdated file
frontline object file delete deals 15

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/files"
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.