AI Skills
AI skills are portable instruction packages that teach coding agents how to work with Wink. Instead of relying on training data or stale documentation, each skill directs the agent to use the Wink MCP server as the live source of truth for API contracts and platform docs.
Skills work with any agent client that supports them — Claude Code, Codex, Cursor, and others.
Available Skills
Section titled “Available Skills”wink-api-builder
Section titled “wink-api-builder”Implement, review, or debug Wink API integrations. The skill walks the agent through a structured workflow:
- Search for the right API operation via
api_search - Open the live request/response contracts from the MCP server
- Pull authentication setup from the docs
- Write code against the verified contract
- Flag any mismatches between existing code and the current API
Useful for:
- Building new client methods for any Wink API
- Debugging contract mismatches (e.g. a request returning HTTP 400)
- Reviewing existing integrations against the live spec
Install
Section titled “Install”Copy the skill folder into your agent’s skill directory.
Claude Code
# repo-localcp -r skills/wink-api-builder .claude/skills/
# or user-levelcp -r skills/wink-api-builder ~/.claude/skills/Invoke with:
/wink-api-builder add a TypeScript client for the Wink affiliate create flowCodex
# repo-localcp -r skills/wink-api-builder .agents/skills/
# or user-levelcp -r skills/wink-api-builder $CODEX_HOME/skills/Invoke with:
Use $wink-api-builder to add a TypeScript client for the Wink affiliate create flow.Other agents
Place the skill folder wherever your agent resolves skills from. The entry point is SKILL.md.
Requirements
Section titled “Requirements”- A connected Wink MCP server
- An agent client with MCP and skill support