← Hacker News

Show HN: Dex – Cost-aware analytics engineering skills for agents

Hacker News · marcociavarella · July 8, 2026
Exmergo released Dex, an open-source skills plugin for Analytics Engineers to use with Claude Code and other coding agents. The plugin manages costs by implementing cost guards for exploration queries and data transformations, addressing the challenge of expensive consumption-billed platforms like Snowflake and Databricks combined with costly token usage. Dex achieved 76% performance on ade-bench with Claude Sonnet 5 and claims to deliver 2.5x cost improvements.

Detailed Analysis

Dex, launched by Exmergo co-founder Marco via Show HN, represents a targeted attempt to solve a cost problem that sits at the intersection of two expensive technology stacks: consumption-billed data warehouses like Snowflake and Databricks, and token-metered AI coding agents like Claude Code. The tool is packaged as an open-source (Apache-2.0) skills plugin that installs either universally via `npx skills add exmergo/dex` or directly into Claude Code through the platform's plugin marketplace system. Rather than building a standalone product, Exmergo chose to extend Claude Code's native extensibility model, using SKILL.md files paired with tightly scoped control scripts to govern three core workflows: `/dex:explore`, `/dex:transform`, and `/dex:maintain`.

The core technical insight behind Dex is that analytics engineering is a uniquely dangerous domain for unconstrained AI agents. Exploratory SQL queries against large warehouse tables can trigger enormous compute costs on consumption-billed platforms, while the same exploratory process — scanning schemas, sampling data, iterating on transformations — can just as easily exhaust an LLM's context window or run up substantial token bills. Dex addresses both failure modes simultaneously by inserting a "cost guard" layer that constrains how the agent queries and transforms data, effectively creating guardrails that prevent runaway warehouse costs and runaway token consumption in the same motion. This dual-sided cost discipline is the product's central differentiator, and it reflects a maturing recognition in the agentic coding space that raw capability isn't enough — production-grade agents need economic constraints baked into their tooling, not just left to prompt engineering or user vigilance.

The performance claims are notable in their specificity: Dex reports 76% on ade-bench (an analytics/data engineering benchmark) when paired with Claude Sonnet, alongside a claim of being roughly 2.5x cheaper than a comparable system referred to as "Fable 5." While these figures are self-reported and unverified by third parties, they signal an emerging trend of vertical-specific benchmarking for AI agents — moving beyond generic coding benchmarks toward domain-specific evaluations that better reflect real-world professional workflows like dbt model construction, SQL generation, and data drift detection. This mirrors a broader pattern across the agentic AI ecosystem in 2025-2026, where general-purpose foundation models like Claude Sonnet are increasingly paired with specialized "skill" layers that encode domain expertise, safety constraints, and cost controls rather than relying on the base model alone.

More broadly, Dex is emblematic of the ecosystem that has grown up around Claude Code's plugin and skills architecture, which Anthropic has positioned as an open, extensible foundation rather than a closed product. Third-party developers building narrowly scoped, cost-conscious tools for specific professional verticals — here, analytics and data engineering — suggests that the economic viability of AI coding agents in enterprise contexts hinges as much on cost governance as on raw model capability. As data teams increasingly experiment with agentic workflows atop expensive cloud data platforms, tools like Dex point to a growing market need: middleware that makes agentic AI not just capable but affordable and predictable enough for production use, a concern likely to intensify as more teams move from pilot projects to sustained, budget-conscious deployment of AI coding assistants.

Read original article →