Install AI Skills
The OpenMetadata skills package follows the Agent Skills open standard, which is supported by 30+ AI coding tools. Below are setup instructions for the most popular ones.Prerequisites
All tools require the OpenMetadata repository cloned locally:Claude Code
Claude Code has the richest integration: slash commands, parallel sub-agents, and SessionStart hooks.Install the skills plugin
From the OpenMetadata repo root:This registers the skills as a Claude Code plugin. The three slash commands become available immediately.
Verify installation
Start Claude Code and check that the commands are available:You should see the scaffold skill activate.
Use the skills
Three slash commands are available:
You can also invoke skills directly in conversation:
| Command | Purpose |
|---|---|
/scaffold-connector | Scaffold a new connector with JSON Schema and Python boilerplate |
/connector-review | Review connector code against golden standards |
/load-standards | Load all connector development standards into context |
Claude Code Features
- Parallel sub-agents: The review skill launches 5 specialized agents simultaneously for faster reviews
- Research agent: The scaffold skill can dispatch a researcher agent to gather API documentation
- SessionStart hooks: Standards are automatically loaded when you start a connector session
- Full tool access: Skills can read files, run commands, search code, and edit files
Cursor
Cursor discovers skills from the.cursor/skills/ directory or project rules.
Add as a project rule (alternative)
In Cursor: Settings → Rules → Add Rule → Project RulePaste the contents of
skills/standards/main.md as the rule content. This ensures the connector standards are always available in Cursor’s context.OpenAI Codex
Codex usesAGENTS.md files to understand project conventions.
Create AGENTS.md
From the OpenMetadata repo root, create an This gives Codex the core connector development standards as context.
AGENTS.md file that references the skills:GitHub Copilot
Copilot works best with context files in the workspace.Windsurf
Windsurf uses rules files for project context.Any AI Agent
TheCONNECTOR_CONTEXT.md file generated by the scaffold tool is designed to work with any AI agent. It contains everything the agent needs:
- Connector profile (name, type, capabilities, auth)
- Source documentation (API docs URL, SDK package, endpoints, notes)
- File list with what to implement in each
- Reference connector to copy patterns from
- Registration checklist
- Validation checklist
Feature Comparison
| Feature | Claude Code | Cursor | Codex | Copilot | Windsurf |
|---|---|---|---|---|---|
| Slash commands | Yes | No | No | No | No |
| Parallel review agents | Yes | No | No | No | No |
| Research agent delegation | Yes | No | No | No | No |
| Standards auto-loading | Yes | Via rules | Via AGENTS.md | Via instructions | Via rules |
| Scaffold tool | Yes | Manual | Manual | Manual | Manual |
| CONNECTOR_CONTEXT.md | Yes | Yes | Yes | Yes | Yes |
| Code implementation | Yes | Yes | Yes | Yes | Yes |