Altimate data engineering plugin for Codex — 11 skills covering dbt workflows, Snowflake query optimization, and delegation to the altimate-code CLI agent.
Same SKILL.md content shipping in the Claude Code
data-engineering-skillsplugin, thealtimate-opencode-plugin, and thealtimate-hermes-plugin— the agentskills.io open standard. This repo wraps them in the Codex plugin contract: a.codex-plugin/plugin.jsonmanifest, a.agents/plugins/marketplace.jsonregistry, and flatskills/*directories under one plugin root.
| Skill | What it does |
|---|---|
creating-dbt-models |
Creates dbt models following project conventions — discovers naming patterns first, runs dbt build to verify |
refactoring-dbt-models |
Safely refactors dbt models with downstream impact analysis |
debugging-dbt-errors |
Systematic dbt error debugging — reads the full error, checks upstream first, runs dbt build to verify |
testing-dbt-models |
Adds schema tests + data quality validation matching existing project patterns |
documenting-dbt-models |
Documents dbt models and columns in schema.yml, matching existing project style |
migrating-sql-to-dbt |
Converts legacy SQL (stored procs, views, ETL) into modular dbt models |
developing-incremental-models |
Develops and troubleshoots dbt incremental models — strategy / unique_key / partitioning |
finding-expensive-queries |
Finds and ranks expensive Snowflake queries by cost, time, or data scanned |
optimizing-query-by-id |
Optimizes Snowflake query performance using a query_id from QUERY_HISTORY |
optimizing-query-text |
Optimizes Snowflake SQL from provided query text — anti-pattern detection |
altimate-code |
Delegates multi-step data work to the altimate-code CLI agent (live warehouse access, column lineage, dbt builds, FinOps) |
All skills assume the agent has shell access to invoke dbt, altimate-dbt, and (for the altimate-code skill) the altimate-code CLI. They do not ship as MCP tools — the skill text instructs the agent on the right commands and conventions.
# 1. Add the marketplace to your Codex (clones the registry, makes the plugin findable)
codex plugin marketplace add AltimateAI/altimate-codex-plugin
# 2. Open Codex, type `/plugins`, select "Altimate Data Engineering", install
codexYou can also add a local clone or a different git ref:
codex plugin marketplace add ~/code/altimateai/altimate-codex-plugin # local path
codex plugin marketplace add AltimateAI/altimate-codex-plugin --ref main # pinned refTo refresh:
codex plugin marketplace upgrade altimate-codex-pluginTo remove the marketplace registration:
codex plugin marketplace remove altimate-codex-pluginThe plugin ships a SessionStart hook that injects a short routing hint into the model's context so it prefers the altimate-code skill for warehouse-touching work. Codex does not run plugin-bundled hooks automatically — the first time you start a session with the plugin installed, Codex will prompt you to review and trust the hook definition. Approve it once and the hook fires in every subsequent session; skip it and the plugin still installs but the routing hint won't be delivered.
altimate-codex-plugin/
├── .agents/plugins/
│ └── marketplace.json # marketplace registry pointing at ./plugins/altimate
└── plugins/altimate/
├── .codex-plugin/
│ └── plugin.json # plugin manifest
├── hooks/
│ ├── hooks.json # SessionStart hook definition
│ └── altimate-code-session-start.sh # hook script (routing hint)
└── skills/
├── altimate-code/SKILL.md
├── creating-dbt-models/SKILL.md
├── debugging-dbt-errors/SKILL.md
├── developing-incremental-models/SKILL.md
├── documenting-dbt-models/SKILL.md
├── finding-expensive-queries/SKILL.md
├── migrating-sql-to-dbt/SKILL.md
├── optimizing-query-by-id/SKILL.md
├── optimizing-query-text/SKILL.md
├── refactoring-dbt-models/SKILL.md
└── testing-dbt-models/SKILL.md
For the altimate-code delegation skill (and for altimate-dbt used in several other skills), install the companion CLI:
npm install -g altimate-codeThis provides both the altimate-code agent and the altimate-dbt deterministic tool the dbt skills shell out to.
MIT — see LICENSE.