Skip to content

Latest commit

 

History

10 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Interfaze Skills

Installable Agent Skills for Interfaze AI. This repo follows the open Agent Skills format and is compatible with the skills CLI.

What is Interfaze AI?

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.

Included skills

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

Installation

Install all skills:

npx skills add JigsawStack/interfaze-skills

Install a single skill:

npx skills add JigsawStack/interfaze-skills --skill ocr

List available skills without installing:

npx skills add JigsawStack/interfaze-skills --list

Setup

Set INTERFAZE_API_KEY in your environment, then install the SDK for your stack.

npm install interfaze          # TypeScript
pip install interfaze          # Python
import { 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.

Other SDKs

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.

When to use AGENTS.md vs SKILL.md

  • 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.

Format

This repo follows the Agent Skills open specification. Skills work with 18+ AI agents including Claude Code, GitHub Copilot, Cursor, Cline, and others.

License

MIT — see LICENSE.

About

Installable Agent Skills for Interfaze AI, compatible with the skills CLI and the open Agent Skills spec

Resources

Stars

4 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors