Skip to main content
The Flinks AI Skill is a curated markdown file that gives AI coding assistants everything they need to build a Flinks integration in one shot: authentication flows, Connect setup, event handling, data retrieval with polling, MFA handling, error codes, and test credentials. Skill URL: https://docs.flinks.com/skill.md

What is an AI Skill?

An AI skill is a structured markdown document designed specifically for AI consumption. Unlike an MCP server that provides real-time search across documentation, a skill delivers the complete integration context upfront, allowing an AI assistant to build a working implementation from a single prompt. The Flinks skill covers:
  • Authentication flow: Token generation, authorize calls, credential handling
  • Flinks Connect setup: Iframe parameters, event listeners, redirect handling
  • Data retrieval: GetAccountsDetail, polling on 202, async endpoints
  • MFA handling: 203 responses, security challenges, re-authorization
  • Refresh flows: Cached vs live re-authorization, nightly refresh setup
  • Error codes: 401, 202, 203 responses and recovery actions
  • Enrichment: Income, lending, and credit risk attributes
  • Test users: Sandbox credentials and demo institution

How to Use

With Claude Code

Add the skill as a local file or fetch it directly:

With Any AI Assistant

  1. Fetch the skill file from https://docs.flinks.com/skill.md
  2. Include it in your AI assistant’s context (paste it, attach it, or reference it)
  3. Describe what you want to build. The skill provides enough context for a complete implementation

Example Prompt

Skill vs MCP Server

AI SkillMCP Server
What it isSingle markdown file with complete contextLive search across all documentation
Best forBuilding new integrations from scratchLooking up specific details during development
How it worksOne-shot context: AI reads it all upfrontOn-demand queries: AI searches as needed
SetupDownload a file or paste a URLConfigure server connection in your IDE
Use when”Build me a Flinks integration""What parameters does this endpoint accept?”
Use the skill when you want an AI to build something end-to-end. Use the MCP server when you need targeted answers during ongoing development. They work well together: start with the skill for the initial build, then use MCP for refinements.

Resources