files

Lists, downloads, and deletes file attachments on Frontline table and object rows via CLI.

Updated Jul 27, 2026
One-click install
npx skills add https://github.com/api-evangelist/frontline --skill files-api-evangelist
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: files
Source: https://github.com/api-evangelist/frontline/tree/main/skills/vendor/files
Command: npx skills add https://github.com/api-evangelist/frontline --skill files-api-evangelist

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Managing binary file attachments on Frontline rows requires knowing the right CLI commands and row IDs; this Skill provides the exact commands to list, inspect, download, and delete files attached to table and object rows. ## Core Features & Use Cases - List and Inspect Attachments: Retrieve file metadata including ID, original filename, content type, size, and creation date for any row. - Download Files: Save attachments to the current directory or a specific output path using the original filename. - Delete Outdated Files: Remove stale attachments from rows by file ID. - Use Case: Find a deal row for "Acme Corp", list its attached files, download the contract PDF to a local folder, and delete an outdated version. ## Quick Start Ask the assistant to list the files attached to a specific Frontline row and download one of them to a local path.

Frequently Asked Questions about files

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I list files attached to a Frontline row?▼

Run frontline object file list <object> <row-id> or frontline table file list <table> <row-id>. It returns an array of file objects with id, originalName, contentType, size, and createdAt.

How do I download a file attachment with the Frontline CLI?▼

Use frontline object file download <object> <file-id> to save with the original filename, or add --output ./path/file.pdf to specify a destination path. The same syntax works for tables.

Can I upload files to Frontline using the CLI?▼

No, file upload via CLI is not supported because it requires multipart form-data. Use the Frontline web UI or direct API calls to upload attachments.

How do I find the row ID needed for file commands?▼

Search for the row first with frontline object row list <object> --search "term", which returns the row ID. Then pass that ID to the file list, get, download, or delete commands.

How do I delete an outdated file attachment in Frontline?▼

Run frontline object file delete <object> <file-id> or frontline table file delete <table> <file-id>. You need the file ID, which you can obtain from the file list command.