Command Claude Code
Add a new database driver to Altimate Code. Scaffolds the driver, registers it across all 23 integration points, writes E2E tests, and updates docs. Usage - /add-database-driver.
Command Claude Code
Add a new database driver to Altimate Code. Scaffolds the driver, registers it across all 23 integration points, writes E2E tests, and updates docs. Usage - /add-database-driver.
Command Claude Code
Audit a v1.4.0-style upstream bridge merge for the regression patterns that bit us last time. Catches brand leaks, behavior patches lost to overwrite, split-brain module pairs, and test fixtures locked to old APIs. Run after the bridge merge tool produces a PR, before merging to main.
Command Claude Code
Cut a BETA (prerelease) of altimate-code to the npm beta channel. Existing latest users are NOT auto-upgraded — only opt-in beta testers get it. Use to soak a risky change (e.g. a big upstream merge) before promoting to latest with /release.
Command Claude Code
Release a new version of altimate-code. Reviews code, fixes issues, generates changelog, runs checks, tags, pushes, and monitors CI. Everything ships clean in one release.
Command Claude Code
Discover and write missing tests for altimate-code. Runs hourly to find real-world gaps. Uses a team with a critic to validate tests before committing.
Hook Claude Code
Runs before the agent uses a tool for Bash tool calls, running an inline shell check. From AltimateAI/altimate-code.
Settings file Claude Code
Agent settings declaring 1 hook event (PreToolUse).
Skill Claude CodeCodex
Configure Altimate platform credentials for datamate and API access.
Skill Claude CodeCodex
Analyze Snowflake query costs and identify optimization opportunities.
Skill Claude CodeCodex
Validate that two tables or query results are identical — or diagnose exactly how they differ. Discover schema, identify keys, profile cheaply, then diff. Use for migration validation, ETL regression, and query refactor verification.
Skill Claude CodeCodex
Build modern, interactive data visualizations and dashboards using code-based component libraries (shadcn/ui, Recharts, Tremor, Nivo, D3, Victory, visx). Use this skill whenever the user asks to visualize data, build dashboards, create analytics views, chart metrics, tell a data story, build a reporting interface…
Skill Claude CodeCodex
Analyze downstream impact of dbt model changes using column-level lineage and the dependency graph. Use when evaluating the blast radius of a change before shipping. Powered by altimate-dbt.
Skill Claude CodeCodex
REQUIRED before writing or modifying ANY dbt model. Invoke this skill FIRST whenever a task says "create", "build", "add", "modify", "update", "fix", or "refactor" a dbt model, staging file, mart, incremental, or snapshot. Skipping this skill is the leading cause of silent-correctness bugs — models that compile and…
Skill Claude CodeCodex
Document dbt models and columns in schema.yml with business context — model descriptions, column definitions, and doc blocks. Use when adding or improving documentation for discoverability. Powered by altimate-dbt.
Skill Claude CodeCodex
Cloudflare-style AI code review for dbt/SQL pull requests. Produces a signed APPROVE/COMMENT/REQUESTCHANGES verdict where every blocking finding is backed by a deterministic engine call — column-lineage blast radius, query equivalence, PII classification, and A–F grade. Use to review a dbt PR or the working-tree…
Skill Claude CodeCodex
REQUIRED after building or modifying ANY dbt model that has columns declared in schema.yml / models.yml. Run altimate-dbt schema-verify --model to diff actual columns against the spec, and treat any mismatch verdict as "not done." The most common reason "the build is green but the tests still fail" is that the model…
Skill Claude CodeCodex
Add schema tests, unit tests, and data quality checks to dbt models. Use when validating data integrity, adding test definitions to schema.yml, writing unit tests, or practicing test-driven development in dbt. Powered by altimate-dbt.
Skill Claude CodeCodex
Debug dbt errors — compilation failures, runtime database errors, test failures, wrong data, and performance issues. Use when something is broken, producing wrong results, or failing to build. Powered by altimate-dbt.
Skill Claude CodeCodex
Generate dbt unit tests automatically for any model. Analyzes SQL logic (CASE/WHEN, JOINs, window functions, NULLs), creates type-correct mock inputs from manifest schema, and assembles complete YAML. Use when a user says "generate tests", "add unit tests", "test this model", or "test coverage" for dbt models.
Skill Claude CodeCodex
Compare column-level lineage between two versions of a SQL query to show added, removed, and changed data flow edges.
Skill Claude CodeCodex
Classify schema columns for PII (SSN, email, phone, name, address, credit card) and check whether queries expose them. Use for GDPR/CCPA/HIPAA compliance audits.
Skill Claude CodeCodex
Analyze and optimize SQL queries for better performance.
Skill Claude CodeCodex
Analyze DDL migrations for data loss risks — type narrowing, missing defaults, dropped constraints, breaking column changes. Use before applying schema changes to production.
Skill Claude CodeCodex
Pre-merge SQL quality gate — lint 26 anti-patterns, grade readability/performance A-F, validate syntax, and scan for injection threats. Use before committing or reviewing SQL changes.