claude-code-elixir

作者 georgeguimaraes已验证

Claude Code plugin marketplace for Elixir development

153
Stars
14
Forks
Shell
语言
2026/8/23
添加时间

⚠️ 第三方软件声明

本 Skill 为第三方开源软件,独立托管于 GitHub。SkillTip 仅为信息目录,不控制或维护底层仓库。所显示的安全检查为自动化且范围有限,安装前请自行审查源码。

阅读服务条款

安装

添加到你的 Claude Code skills 目录:

# Add to your Claude Code skills
git clone https://github.com/georgeguimaraes/claude-code-elixir

快速入门

使用 claude-code-elixir 等 Skills 的指南。

安全报告

已验证

上次扫描:—

{
  "status": "PASSED",
  "issues": []
}

README.md

Claude Code Elixir

Claude Code plugins for Elixir development.

Installation

claude plugin marketplace add georgeguimaraes/claude-code-elixir

Install all plugins:

claude plugin install elixir-lsp@claude-code-elixir && \
claude plugin install mix-format@claude-code-elixir && \
claude plugin install mix-compile@claude-code-elixir && \
claude plugin install mix-credo@claude-code-elixir && \
claude plugin install elixir@claude-code-elixir

Prerequisites

Install the expert binary and make sure it's on your PATH. See installation instructions.

Note: mix-format, mix-compile, and mix-credo require bash (Git Bash or WSL on Windows).


Plugins

Overview

PluginTypeDescription
elixir-lspLSPLanguage Server with completions, go-to-definition, diagnostics
mix-formatHookAuto-format .ex/.exs files on save
mix-compileHookCompile with --warnings-as-errors on save
mix-credoHookRun Credo code quality checks on save
elixirSkillsBEAM architecture, Phoenix, Ecto, OTP patterns

Tools

elixir-lsp

Elixir Language Server integration powered by Expert.

FeatureDescription
NavigationGo to definition, find references
CompletionsWith signature help and docs
DiagnosticsCompiler warnings and errors
File types.ex, .exs, .heex, .leex

mix-format

Auto-runs mix format after editing .ex and .exs files.

mix-compile

Auto-runs mix compile --warnings-as-errors after editing .ex files.

  • Only .ex files (not .exs scripts/tests)
  • Finds mix.exs by walking up directories
  • Fails on warnings or errors

mix-credo

Auto-runs mix credo after editing .ex and .exs files to check code quality.

  • Runs on both .ex and .exs files
  • Uses project's default Credo configuration
  • Gracefully skips if Credo is not installed
  • Fails on code quality issues

Skills

elixir

Paradigm-shifting skills for Elixir, Phoenix, and OTP development. Includes a SessionStart hook that auto-suggests skills when working on Elixir code.

Included skills:

SkillUse When
elixir-thinkingDesigning modules, processes, data structures
phoenix-thinkingWorking with Phoenix, LiveView, PubSub
ecto-thinkingWorking with Ecto, contexts, schemas
otp-thinkingImplementing GenServers, supervisors, Tasks
elixir-thinking

Mental models for writing Elixir — how it differs from OOP.

ConceptInsight
Iron LawNO PROCESS WITHOUT A RUNTIME REASON
Three dimensionsBehavior, state, mutability are decoupled
ProcessesFor runtime (state/concurrency/faults), not code organization
"Let it crash"Means "let it heal" — supervisors restart
PolymorphismBehaviors → Protocols → Message passing (least to most dynamic)
Sources
phoenix-thinking

Architectural patterns for Phoenix and LiveView.

ConceptInsight
Where to load datamount/3 by default; handle_params/3 for live navigation (push_patch)
Initial double-loadmount and handle_params both run twice; use connected?/1, assign_async/3, or assign_new/3
Scopes (1.8+)Security-first authorization threading
PubSubScoped topics, broadcast_from to avoid self-broadcast
Channel fastlaneSocket state can be stale — re-fetch or include in broadcast
Sources
ecto-thinking

Architectural patterns for Ecto and contexts.

ConceptInsight
ContextsBounded domains with their own "dialect"
Cross-context refsUse IDs, not belongs_to associations
SchemasMultiple changesets per schema, embedded_schema for forms
PreloadsSeparate vs join — pick based on data shape
pool_count vs pool_sizepool_count = DBConnection pools, pool_size = connections per pool
Sources
otp-thinking

OTP design patterns and when to use each abstraction.

ConceptInsight
Iron LawGENSERVER IS A BOTTLENECK BY DESIGN
ETSBypasses bottleneck — concurrent reads with :read_concurrency
Task.SupervisorTHE pattern for async work (not raw Task.async)
Registry + DynamicSupervisorNamed dynamic processes without atom leaks
Broadway vs ObanExternal queues vs background jobs — different problems
Sources

Known Issues

elixir-lsp: client/registerCapability workaround. Claude Code's LSP client doesn't respond to client/registerCapability requests that Expert sends during initialization (anthropics/claude-code#32595). The plugin includes a Python wrapper (expert-wrapper) that intercepts these requests and auto-responds so Expert can initialize properly. The wrapper will be removed once the upstream fix lands. Requires Python 3 on PATH.

Troubleshooting

expert not found: Ensure the expert binary is on your PATH. See installation instructions.


License

Copyright (c) 2025 George Guimarães

Licensed under the Apache License, Version 2.0. See LICENSE for details.

常见问题

What is claude-code-elixir?

claude-code-elixir is an open-source ide extensions skill for AI coding assistants such as Claude Code, Codex CLI, and ChatGPT, built by georgeguimaraes. Claude Code plugin marketplace for Elixir development. It has 153 GitHub stars.

Is claude-code-elixir safe to use?

Yes. claude-code-elixir passed SkillsLLM's automated security scan — a dependency vulnerability audit plus prompt-injection heuristics — with no high-severity issues. You can read the full report in the Security Report section on this page.

How do I install claude-code-elixir?

Clone the repository with "git clone https://github.com/georgeguimaraes/claude-code-elixir" and add it to your Claude Code skills directory (see the Installation section above).

What programming language is claude-code-elixir written in?

claude-code-elixir is primarily written in Shell. It is open-source under georgeguimaraes on GitHub, so you can review or fork the full source.

Are there alternatives to claude-code-elixir?

Yes. SkillsLLM lists many other IDE Extensions skills you can browse and compare side by side. Open the IDE Extensions category from the badge at the top of this page, or use the Related Skills and comparison links further down to weigh claude-code-elixir against similar tools.

评论 (0)

暂无评论,成为第一个分享想法的人!

claudian

by YishenTu

An Obsidian plugin that embeds Claude Code/Codex as an AI collaborator in your vault

14,921972TypeScript
IDE 扩展
查看详情

OpenMythos

by kyegomez

A theoretical reconstruction of the Claude Mythos architecture, built from first principles using the available research literature.

14,8003,292Python
IDE 扩展
查看详情

cursor-hooks

by cursor

5

通过 Hooks 自动化 Cursor Agent 事件相关行为。

12,500890TypeScript
IDE 扩展claude-codeai-tools
查看详情

arscontexta

by agenticnotetaking

Claude Code plugin that generates individualized knowledge systems from conversation. You describe how you think and work, have a conversation and get a complete second brain as markdown files you own.

3,479220Shell
IDE 扩展
查看详情

开发者还喜欢

基于喜欢此 Skill 的开发者投票和收藏

ECC

by affaan-m

10

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

242,21936,702JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情
15

An agentic skills framework & software development methodology that works.

234,96620,863Shell
AI 智能体ai-agentsbrainstorming
查看详情

hermes-agent

by NousResearch

10

The agent that grows with you

234,43747,175Python
AI 智能体ai-agentsagent-orchestration
查看详情

n8n

by n8n-io

12

Fair-code workflow automation platform with native AI capabilities. Combine visual building with custom code, self-host or cloud, 400+ integrations.

201,88160,308TypeScript
MCP 服务器apisai-tools
查看详情

The agent harness performance optimization system. Skills, instincts, memory, security, and research-first development for Claude Code, Codex, Opencode, Cursor and beyond.

185,94028,768JavaScript
AI 智能体ai-agentsanthropicclaude-code
查看详情

cc-switch

by farion1231

3

A cross-platform desktop All-in-One assistant for Claude Code, Codex, OpenCode, OpenClaw, Grok Build & Hermes Agent. Only official website: ccswitch.io

128,8688,826Rust
AI 智能体claude-codeai-tools
查看详情