Installable Agent Skills for Interfaze AI. This repo follows the open Agent Skills format and is compatible with the skills CLI.
Interfaze AI is a proprietary multimodal AI model accessible through a chat-completions compatible API. It handles vision OCR, speech-to-text, structured output, object detection, web search, web scraping, and document processing through a single unified endpoint — no tool routing or multi-provider setup required.
| Skill | Purpose |
|---|---|
| ocr | OCR and visual text extraction from images, scans, PDFs, invoices, receipts, and forms |
| speech-to-text | Speech-to-text transcription from audio files, voice notes, and recordings |
| structured-output | Convert model responses into strict JSON or schema-constrained structured objects |
| object-detection | Detect and locate objects in images with bounding box coordinates |
| web-search | Search the web for current information, facts, prices, and news |
| web-scraping | Extract structured data from specific web pages and URLs |
Install all skills:
npx skills add JigsawStack/interfaze-skillsInstall a single skill:
npx skills add JigsawStack/interfaze-skills --skill ocrList available skills without installing:
npx skills add JigsawStack/interfaze-skills --listSet INTERFAZE_API_KEY in your environment, then install the SDK for your stack.
npm install interfaze # TypeScript
pip install interfaze # Pythonimport { Interfaze } from "interfaze";
const interfaze = new Interfaze();from interfaze import Interfaze
interfaze = Interfaze()The base URL and model name are built in, and the client reads INTERFAZE_API_KEY automatically.
| SDK | Package | Entry point |
|---|---|---|
| LangChain (TypeScript) | @interfaze-ai/langchain |
new ChatInterfaze() |
| LangChain (Python) | interfaze-langchain |
ChatInterfaze() |
| Vercel AI SDK | ai + @ai-sdk/openai |
createOpenAI({ baseURL, apiKey }) |
| OpenAI SDK | openai |
new OpenAI({ baseURL, apiKey }) |
The Vercel AI SDK and OpenAI SDK talk to Interfaze over the Chat Completion API standard, so they need the base URL https://api.interfaze.ai/v1 and the model name interfaze. Each skill's ## Setup section has the full snippet for every SDK.
- AGENTS.md contains repo-wide rules and conventions that apply to all skills. Agents load this as passive context.
- SKILL.md files contain specialized instructions for a single capability. Agents load these on-demand when a task matches the skill description.
This repo follows the Agent Skills open specification. Skills work with 18+ AI agents including Claude Code, GitHub Copilot, Cursor, Cline, and others.
MIT — see LICENSE.