Honeydew AI Plugins for Coding Agents

May 22, 2026 · View on GitHub

Skills and tools powered by the Honeydew MCP that help coding agents build semantic models and analyze data through natural conversation.

Example Use Cases

Query your data — Ask "Show me revenue by region for last quarter." Your coding agent discovers the right entities and metrics, runs the query through the semantic layer, and returns the results.

Build a semantic model — Ask "I added a new orders table — create an entity with revenue and order count metrics." Your coding agent imports the table, defines attributes and metrics following your naming conventions, and validates the result.

Investigate anomalies — Ask "Why did churn spike last month?" Your coding agent runs a multi-step deep analysis, explores correlations across your model, and surfaces the key drivers with supporting data.

Prerequisites

Installation

Claude Code

Add this marketplace to Claude Code:

/plugin marketplace add honeydew-ai/honeydew-ai-coding-agents-plugins

Then install the plugin:

/plugin install honeydew-ai@honeydew-ai-claude-plugins

Then reload plugins to activate:

/reload-plugins

Codex

Add this marketplace to Codex:

codex plugin marketplace add honeydew-ai/honeydew-ai-coding-agents-plugins

Then open the plugin directory and install the plugin:

codex
/plugins

If the marketplace was already added before this repo exposed the Codex wrapper path, refresh it first:

codex plugin marketplace upgrade honeydew-ai-coding-agents-plugins

GitHub Copilot CLI

Add this marketplace to Copilot CLI:

/plugin marketplace add honeydew-ai/honeydew-ai-coding-agents-plugins

Then install the plugin:

/plugin install honeydew-ai@honeydew-ai-github-copilot-plugins

Cursor

  1. In your team or organization settings, go to cursor.com/dashboard/plugins (or click Plugins on the left side menu).
  2. Scroll down to Team Marketplaces and click Add Marketplace (or select an existing one).
  3. Within the Marketplace, click Add Plugin, paste https://github.com/honeydew-ai/honeydew-ai-coding-agents-plugins, and click Add 1 plugin.
  4. Optionally, enable auto-refresh to get updates automatically.
  5. Go back to the plugins page, search for the Honeydew plugin, and click Add.

Gemini CLI

Install the Honeydew skills:

gemini skills install \
    https://github.com/honeydew-ai/honeydew-ai-coding-agents-plugins.git \
    --path .gemini/skills

Other Coding Agents

For coding agents that support MCP, configure the Honeydew MCP server and use the skill files in this repository as prompts or instructions. The skills are written as agent-agnostic markdown documentation that any coding agent can consume.

Available Skills

The honeydew-ai plugin includes 12 skills:

SkillDescription
model-explorationExplore the semantic model — list entities, search fields, inspect relationships, and discover warehouse tables
workspace-branchManage workspaces and branches — set session context, create/delete branches, review branch history, and open pull requests
entity-creationCreate entities — the foundational business concepts built from data warehouse tables
relation-creationDefine relationships between entities with join types, cardinality, and complex join conditions
attribute-creationCreate calculated attributes (dimensions) — per-row virtual columns defined with SQL expressions
metric-creationCreate metrics (KPIs) — reusable aggregations like totals, averages, ratios, and growth rates
context-item-creationCreate context items — instructions, skills, knowledge pointers, and memory events that give the AI analyst persistent knowledge about your organization
domain-creationCreate domains — curated subsets of the semantic model exposed to specific teams or use cases
validationMandatory post-creation validation — type-specific sanity checks, cross-validation, and error handling
queryQuery data using structured YAML perspectives, natural language questions, or multi-step deep analysis
filteringAdvanced filtering syntax — comparisons, string matching, date handling, nulls, and full-text search
conversation-reviewBulk review past analysis conversations — categorize user feedback, build action items, and apply semantic/context layer improvements on a branch

Supported Data Warehouses

  • Snowflake
  • Databricks
  • BigQuery

Building a Release

Claude-specific zip (claude.ai private marketplace)

The honeydew-ai-claude-<version>.zip artifact is used to install this plugin via the claude.ai web interface as a private marketplace plugin. It packages the plugin in the layout claude.ai expects: .claude-plugin/plugin.json at the zip root, alongside .mcp.json, hooks/, assets/, and all skill markdown files.

To install on claude.ai:

  1. Download the zip — permanent link to the latest version: https://github.com/honeydew-ai/honeydew-ai-coding-agents-plugins/releases/latest/download/honeydew-ai-claude.zip
  2. In claude.ai, go to Settings → Plugins → Add plugin → Upload zip
  3. Upload the zip — the plugin will appear in your private marketplace

Release zips are built automatically by CI and attached to each GitHub Release. To build one locally (e.g. for testing):

./scripts/build-release-claude.sh

This generates dist/honeydew-ai-claude-<version>.zip from the repo root.

License

Apache 2.0 — see LICENSE for details.