Skip to main content
Run any Skill in Manus
with one click
$pwd:
AltimateAI
GitHub creator profile

AltimateAI

Repository-level view of 42 collected skills across 5 GitHub repositories, including approximate occupation coverage.

skills collected
42
repositories
5
occupation fields
3
updated
2026-05-30
occupation focus
Major fields detected across this creator.
repository explorer

Repositories and representative skills

#001
altimate-code
20 skills61360updated 2026-05-30
48% of creator
dbt-develop
Software Developers

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 `dbt build` cleanly but produce wrong values. It contains the patterns that prevent the most common such bugs encountered in real dbt projects: • Incremental high-water marks (`>=` vs `>` ties → silent row dropout) • Snapshot strategy selection (timestamp vs check, `unique_key` choice) • `LEFT JOIN + COUNT(*)` phantom rows from unmatched parents • Type harmonization in `COALESCE` / `CASE` / `UNION` legs • Date-spine completeness (every period present, even empty ones) • Off-by-one window boundaries (`BETWEEN d - (N-1) AND d` for N-wide) • Uniqueness enforcement when schema implies a key • Window-function `LIMIT` with deterministic tiebreaker • Verifying transformation correctness with dbt unit te

2026-05-30
dbt-schema-verify
Software Quality Assurance Analysts & Testers

REQUIRED after building or modifying ANY dbt model that has columns declared in `schema.yml` / `_models.yml`. Run `altimate-dbt schema-verify --model <name>` 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 produces the right *data values* in the wrong *column shape* — extra columns, missing columns, wrong order, wrong types. Many dbt equality tests grade the column tuple `(name, type, position)` exactly, and the agent's prior bias is to add "helpful" extras (`p1`/`p2`/`p3` rank breakdowns, name-resolved variants, lineage metadata) or reorder columns "more logically." Both break the contract. This skill enforces the mechanical check that catches those bugs before declaring done. Use it before declaring any model task complete.

2026-05-30
dbt-unit-tests
Software Quality Assurance Analysts & Testers

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.

2026-05-30
data-parity
Data Scientists

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.

2026-04-21
dbt-test
Software Quality Assurance Analysts & Testers

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.

2026-04-10
dbt-analyze
Database Administrators

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.

2026-03-29
dbt-docs
Database Administrators

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.

2026-03-29
dbt-troubleshoot
Database Administrators

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.

2026-03-29
Showing top 8 of 20 collected skills in this repository.
#002
data-engineering-skills
11 skills1004updated 2026-05-14
26% of creator
altimate-code
Database Architects

Delegates data engineering tasks to altimate-code, a specialized CLI agent with 100+ purpose-built data tools — SQL analysis, column-level lineage, dbt build/test/run, warehouse profiling, FinOps, and connectivity to Snowflake, BigQuery, Redshift, Databricks, Postgres, MySQL, DuckDB. Use this skill when the task needs live warehouse access, column lineage, multi-step data exploration, dbt builds against a real warehouse, or when the user explicitly invokes "altimate", "altimate-code", or "the data agent".

2026-05-14
developing-incremental-models
Database Administrators

Develops and troubleshoots dbt incremental models. Use when working with incremental materialization for: (1) Creating new incremental models (choosing strategy, unique_key, partition) (2) Task mentions "incremental", "append", "merge", "upsert", or "late arriving data" (3) Troubleshooting incremental failures (merge errors, partition pruning, schema drift) (4) Optimizing incremental performance or deciding table vs incremental Guides through strategy selection, handles common incremental gotchas.

2026-02-06
optimizing-query-text
Database Administrators

Optimizes Snowflake SQL query performance from provided query text. Use when optimizing Snowflake SQL for: (1) User provides or pastes a SQL query and asks to optimize, tune, or improve it (2) Task mentions "slow query", "make faster", "improve performance", "optimize SQL", or "query tuning" (3) Reviewing SQL for performance anti-patterns (function on filter column, implicit joins, etc.) (4) User asks why a query is slow or how to speed it up

2026-01-21
creating-dbt-models
Database ArchitectsDatabase Administrators

Creates dbt models following project conventions. Use when working with dbt models for: (1) Creating new models (any layer - discovers project's naming conventions first) (2) Task mentions "create", "build", "add", "write", "new", or "implement" with model, table, or SQL (3) Modifying existing model logic, columns, joins, or transformations (4) Implementing a model from schema.yml specs or expected output requirements Discovers project conventions before writing. Runs dbt build (not just compile) to verify.

2026-01-21
debugging-dbt-errors
Database AdministratorsSoftware Developers

Debugs and fixes dbt errors systematically. Use when working with dbt errors for: (1) Task mentions "fix", "error", "broken", "failing", "debug", "wrong", or "not working" (2) Compilation Error, Database Error, or test failures occur (3) Model produces incorrect output or unexpected results (4) Need to troubleshoot why a dbt command failed Reads full error, checks upstream first, runs dbt build (not just compile) to verify fix.

2026-01-21
documenting-dbt-models
Database Administrators

Documents dbt models and columns in schema.yml. Use when working with dbt documentation for: (1) Adding model descriptions or column definitions to schema.yml (2) Task mentions "document", "describe", "description", "dbt docs", or "schema.yml" (3) Explaining business context, grain, meaning of data, or business rules (4) Preparing dbt docs generate or improving model discoverability Matches existing project documentation style and conventions before writing.

2026-01-21
migrating-sql-to-dbt
Database ArchitectsDatabase Administrators

Converts legacy SQL to modular dbt models. Use when migrating SQL to dbt for: (1) Converting stored procedures, views, or raw SQL files to dbt models (2) Task mentions "migrate", "convert", "legacy SQL", "transform to dbt", or "modernize" (3) Breaking monolithic queries into modular layers (discovers project conventions first) (4) Porting existing data pipelines or ETL to dbt patterns Checks for existing models/sources, builds and validates layer by layer.

2026-01-21
refactoring-dbt-models
Database ArchitectsDatabase Administrators

Safely refactors dbt models with downstream impact analysis. Use when restructuring dbt models for: (1) Task mentions "refactor", "restructure", "extract", "split", "break into", or "reorganize" (2) Extracting CTEs to intermediate models or creating macros (3) Modifying model logic that has downstream consumers (4) Renaming columns, changing types, or reorganizing model dependencies Analyzes all downstream dependencies BEFORE making changes.

2026-01-21
Showing top 8 of 11 collected skills in this repository.
#003
claude-consensus
8 skills252updated 2026-05-20
19% of creator
claude-consensus
Project Management Specialists

Alias for Codex-led consensus plan review adapted from the Claude Consensus plugin. Use when the user invokes claude-consensus from Codex.

2026-05-20
code-review
Software Quality Assurance Analysts & Testers

Alias for Codex-led multi-model code review. Use when the user invokes code-review, asks for code review with multiple models, or requests consensus code review.

2026-05-20
consensus-code-review
Software Quality Assurance Analysts & Testers

Codex-led multi-model code review using the configured consensus panel. Use when the user invokes consensus-code-review or asks for a multi-model code review.

2026-05-20
consensus-plan-review
Project Management Specialists

Codex-led multi-model plan review using Claude Consensus style. Use when the user invokes consensus-plan-review, claude-consensus plan review, multi-model plan review, or asks to run plan-review from Codex.

2026-05-20
consensus-review
Executive Secretaries & Executive Administrative Assistants

Codex-led multi-model review for documents, plans, specs, and general technical questions.

2026-05-20
consensus-setup
Network & Computer Systems Administrators

Inspect or refresh the Codex-led consensus configuration. Use when the user invokes consensus-setup or asks to configure claude-consensus for Codex.

2026-05-20
plan-review
Project Management Specialists

Alias for Codex-led consensus plan review. Use when the user invokes plan-review, asks to run plan review, or requests /plan-reviwe.

2026-05-20
plan-reviwe
Project Management Specialists

Typo alias for /plan-review. Runs Codex-led consensus plan review. Use when the user invokes plan-reviwe or misspells plan-review.

2026-05-20
#004
changelog
2 skills01updated 2026-05-13
4.8% of creator
Showing 5 of 5 repositories
All repositories loaded
AltimateAI GitHub Skills | SkillsMP