ai-models

List and inspect Frontline AI models via CLI to select valid model IDs for agent settings.

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

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Configuring Frontline agents requires valid AI model IDs, but guessing IDs or using the wrong model type causes failed updates. This Skill shows how to discover available models and pick the correct IDs before updating agent settings. ## Core Features & Use Cases - Model Discovery: List available TEXT, TRANSCRIPTION, and FILE_ANALYSIS models from the Frontline CLI. - Model Inspection: Describe a specific model or fetch the default model for a given type. - Safe Agent Configuration: Update agent settings with validated aiModelId values, since frontline agents agent-setting update preflights model and tool references before sending. - Use Case: Before setting an agent's instructions and temperature, run frontline ai-models list --type TEXT to find a valid text model ID, then pass it to the agent-setting update command. ## Quick Start Ask the AI to list the available Frontline text models and update an agent's settings with a valid model ID.

Frequently Asked Questions about ai-models

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

FAQPage Schema
How do I list available Frontline AI models from the CLI?▼

Run frontline ai-models list with a --type flag such as TEXT, TRANSCRIPTION, or FILE_ANALYSIS. Add --table for tabular output, for example: frontline ai-models list --type TEXT --table.

How do I find the default Frontline AI model?▼

Use frontline ai-models default --type TEXT to get the default model for a given type. You can also inspect any model in detail with frontline ai-models describe followed by the model ID.

Which model IDs can I use in Frontline agent settings?▼

Only TEXT model IDs are valid as aiModelId in agent settings. TRANSCRIPTION and FILE_ANALYSIS models serve other purposes, such as the automation FILE_ANALYSIS/OCR node, and should not be used for agent configuration.

Does the Frontline CLI validate model IDs before updating agent settings?▼

Yes, frontline agents agent-setting update preflights aiModelId and customToolIds when the Public API exposes those resources, then sends the update. The backend remains the source of truth for existence and ownership checks.

What are Frontline FILE_ANALYSIS models used for?▼

FILE_ANALYSIS models power the automation FILE_ANALYSIS/OCR node in Frontline. List them with frontline ai-models list --type FILE_ANALYSIS; they are not valid as aiModelId in agent settings.