๐Ÿ—„๏ธ
AI EngineeringShell

Ecto

by georgeguimaraes

Ecto is an AI Engineering skill for Claude Code, published by georgeguimaraes in claude-code-elixir.

168 stars15 forkson georgeguimaraes/claude-code-elixirAdded 2026/09/08Repository updated 2026/09/06
claude-codeectoelixirmarketplaceobanotpphoenix
Install in seconds
Install Ecto
Copy Ecto into your Claude Code skills folder. Run the command in your terminal, or review the source on GitHub before installing.
terminal
npx degit https://github.com/georgeguimaraes/elixir-agent-tools/tree/main/plugins/elixir-dev/skills/ecto ~/.claude/skills/ecto

Requires Node.js. Downloads this skill only โ€” not the rest of the repository โ€” into your Claude Code skills folder.

Without Node.js

git clone https://github.com/georgeguimaraes/elixir-agent-tools.git

Clones the whole repository, then copy the skillโ€™s own directory into your skills folder yourself.

In this catalog

Source file
plugins/elixir-dev/skills/ecto/SKILL.md in georgeguimaraes/claude-code-elixir
Installs to
~/.claude/skills/ecto
Collection
One of 5 skills cataloged from this repository
Category
AI Engineering โ€” 3670 skills

What Ecto does

Ecto designs and debugs Elixir persistence with schemas, changesets, queries, preloads, transactions, and migrations. Use it for application-context data access, multi-tenancy, and database performance issues.

Ecto is cataloged under AI Engineering on DirSkills. Ecto comes from a repository tagged claude-code, ecto, elixir, marketplace and oban.

Documentation

README

Ecto

Model persistence, compose queries, and keep data access within application boundaries.

Context = Setting That Changes Meaning

Context isn't just a namespaceโ€”it changes what words mean. "Product" means different things in Checkout (SKU, name), Billing (SKU, cost), and Fulfillment (SKU, warehouse). Each bounded context may have its OWN Product schema/table.

Think top-down: Subdomain โ†’ Context โ†’ Entity. Not "What context does Product belong to?" but "What is a Product in this business domain?"

Cross-Context References: IDs, Not Associations

schema "cart_items" do
  field :product_id, :integer  # Reference by ID
  # NOT: belongs_to :product, Catalog.Product
end

Query through the context, not across associations. Keeps contexts independent and testable.

This is the opening of the README. Read the full README on GitHub.

Frequently asked about Ecto

  • What else does georgeguimaraes publish alongside Ecto?

    Ecto is one of 5 skills that DirSkills catalogs from georgeguimaraes/claude-code-elixir, the repository it ships in. Its siblings there include Elixir, Oban and Otp. Each one is a separate skill with its own page in this directory, installs the same way Ecto does, and is maintained by georgeguimaraes in that same repository. The rest of the collection is listed on the georgeguimaraes/claude-code-elixir page.

  • How does Ecto compare to other AI Engineering skills?

    Ecto ranks #3292 by stars among the 3670 AI Engineering skills in this catalog. The most-starred ones next to it are Architecture Decision Records, AI-First Engineering and Agentic OS. DirSkills ranks by the star count of the repository each skill ships in, so that order reflects how popular those repositories are rather than any review of Ecto against them. Open each page to compare what they document and how they install.